10-09-2024
EyalGonen
Lapis Lazuli | Level 10
Member since
06-23-2011
- 275 Posts
- 26 Likes Given
- 4 Solutions
- 74 Likes Received
-
Latest posts by EyalGonen
Subject Views Posted 1588 10-07-2024 02:16 AM 1698 10-03-2024 11:26 AM 3275 10-01-2024 03:36 AM 3569 09-26-2024 05:28 AM 3601 09-26-2024 03:56 AM 3644 09-25-2024 03:28 AM 3631 09-15-2024 11:55 PM 3721 09-15-2024 01:47 AM 3812 09-13-2024 06:17 AM 3872 09-13-2024 12:53 AM -
Activity Feed for EyalGonen
- Got a Like for נקודות למחשבה במעבר לקידוד UTF8. 12-01-2024 02:18 AM
- Liked Re: How to use sas-viya CLI to create a new logging.level configuration instance for a service for gwootton. 10-09-2024 01:26 AM
- Posted Re: How to use sas-viya CLI to create a new logging.level configuration instance for a service on SAS Viya. 10-07-2024 02:16 AM
- Liked Re: How to use sas-viya CLI to create a new logging.level configuration instance for a service for gwootton. 10-06-2024 01:32 AM
- Posted How to use sas-viya CLI to create a new logging.level configuration instance for a service on SAS Viya. 10-03-2024 11:26 AM
- Posted Re: SAS Viya Configuration Overwriter on SAS Communities Library. 10-01-2024 03:36 AM
- Liked SAS Viya Configuration Overwriter for JanStienstra. 09-30-2024 09:26 AM
- Posted Re: SAS Viya Configuration Overwriter on SAS Communities Library. 09-26-2024 05:28 AM
- Posted Re: SAS Viya Configuration Overwriter on SAS Communities Library. 09-26-2024 03:56 AM
- Posted Re: SAS Viya Configuration Overwriter on SAS Communities Library. 09-25-2024 03:28 AM
- Got a Like for Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4?. 09-16-2024 12:06 AM
- Posted Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-15-2024 11:55 PM
- Posted Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-15-2024 01:47 AM
- Posted Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-13-2024 06:17 AM
- Liked Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? for Patrick. 09-13-2024 06:12 AM
- Posted Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-13-2024 12:53 AM
- Posted Re: SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-12-2024 11:46 PM
- Posted SAS 9.4 Metadata Bound Libraries capability in Viya 4? on Moving to SAS Viya. 09-12-2024 11:03 PM
- Posted Re: SAS Viya 2021.2.5 Kerberos Hybrid Authentication Process Flows on SAS Communities Library. 09-12-2024 06:20 AM
- Got a Like for Re: Allow CAS Server auto-scaling - Status changed to: Suggestion Under Review. 09-06-2024 01:48 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 5 1 1 -
My Liked Posts
Subject Likes Posted 1 04-24-2023 01:34 AM 1 09-15-2024 11:55 PM 1 07-03-2024 04:25 AM 1 08-26-2024 09:21 AM 1 05-12-2024 11:00 AM
Thanks @gwootton !
One last question about this: I ran the "sas-viya" CLI and it created the logging.level configuration but how do I know if it succeeded? or not programmatically? Is there a way to capture the HTTP response code from the "sas-viya" CLI or does it return some kind of other return code?
... View more
Hi experts,
I want to use the sas-viya CLI with its "configuration" plug-in to create a new logging.level for the "identities" service. For example, to create a "com.sas" logger with level "DEBUG". I could not find any example.
The only example I found is this https://documentation.sas.com/doc/en/sasadmincdc/v_056/calconfig/p0rtltqk08n6y6n1hts1n4ypqfao.htm#n04g1kdn9cqbv2n1purrm4gyp7hv but it seems irrelevant to what I seek.
I believe I know how to update an existing logger, let's say from INFO to DEBUG or vice versa, but not how to create a new logger for a service if it does not exist.
... View more
10-01-2024
03:36 AM
Hi @JanStienstra
Thanks for all the replies!
Just one note: seems to me like your code can misbehave in a situation where a updated service contains multiple configuration instances from the same definition for example the "compute" service has five configurations based on the "sas.compute.server" definition. So your code will only update the first instance (whichever is returned first by the CLI download action). I assume this is intentional but better place some warning about this as this can potentially be destructive if not well understood and improperly used. Of course, correct me if I am wrong.
... View more
09-26-2024
05:28 AM
OK. One last question about this: let's say I download the JSON and it contains multiple key-values. I want to modify just one of those key-values. Can I "reduce" the JSON to keep only the key-value I need and drop all the key-values which I do not wish to modify?
(asking because in sas-bootstrap-config I could target a specific key-value)
For example. if I want to modify this key-value:
/opt/sas/viya/home/bin/sas-bootstrap-config kv write --force "config/identities/sas.identities.providers.ldap.user/emailAddress.work" "mail"
If this JSON equivalent? Will this work? I "reduced" the JSON to only the specific key-value I want to modify and dropped all other key-values which should remain as-is.
{
"config": {
"identities": {
"sas.identities.providers.ldap.user": {
"emailAddress.work": "mail"
}
}
}
}
... View more
09-26-2024
03:56 AM
Thank you @JanStienstra for the quick reply.
I have one more question: suppose I want to modify the value for a specific key, using sas-bootstrap-config I could accomplish that but it seems that with the CLI I need to prepare a JSON file to accomplish this (correct me if I am wrong). What is not clear to me is how to I know how to create this JSON file? The only way I think is to use the CLI option: "sas-viya configuration configurations download --service xxxx" to download the JSON, modify it and then use the CLI again to update like you did in your code in the blog. Is this the only way or is there some documentation/examples how to create the JSON without downloading it first?
... View more
09-25-2024
03:28 AM
Hi @JanStienstra
So the "sas-viya configuration" CLI plug-in replaces the sas-bootstrap-config command that was in Viya 3.5?
It has the same equivalent capabilities as the sas-bootstrap-config command has?
Thanks
... View more
09-15-2024
11:55 PM
1 Like
Hi @SASKiwi
Thanks for the reply.
I am interested in both locked down data access and data encryption at-rest.
... View more
09-15-2024
01:47 AM
That makes much more sense 🙂
So now I am returning to my original question: is there a migration path for Metadata Bound Libraries from SAS 9.4 to SAS Viya 4?
I guess not but wondering if anyone has challenged this before and can share experience
... View more
09-13-2024
06:17 AM
Thanks @Patrick waiting for your findings
Maybe other have experience with Metadata Bound Libraries migration to Viya and can chime in.
By the way, I am still puzzled by the simple SAS code you wrote..
libname test "/public/folder";
How did SAS know that this is a SAS Content folder and not an OS on-disk file system???
What happens if I have a /public SAS Content folder and also a /public filesystem mounted to the Compute Server pod?
How does it differentiate between them? How does it know whether to access the file system or SAS Content?
@Patrick did you actually run the code you sent above: https://communities.sas.com/t5/Moving-to-SAS-Viya/SAS-9-4-Metadata-Bound-Libraries-capability-in-Viya-4/m-p/943754#M122 and it ran fine???
... View more
09-13-2024
12:53 AM
1. I am surprised and curious by what you wrote... how does SAS "know" that /public is in SAS Content and not on the server's file system? I could have a /public mount point as well mounted to the Compute Server pod? How does it differentiate between OS mounted folders and SAS Content folders?
2. We are migrating a SAS Grid environment with Terabytes of SAS datasets. I am not sure that uploading Terabytes of data to SAS Content is recommended and also whether it allows parallel concurrent access to the same data from multiple server (I am referring to table level locking). Today they use Linux GFS to allow this clustered file system. I doubt SAS Content is a replacement for that.
... View more
09-12-2024
11:46 PM
The Metadata Bound Library is a like a BASE library for storing SAS datasets but with metadata access controls and on-disk encryption.
I do not see how SAS Content is a replacement for that maybe I did not understand your answer. As far as I understand the SAS Content is not a place to store SAS datasets.
I need to know how to migrate SAS 9.4 which heavily uses Metadata Bound Library to SAS Viya 4 - with both aspects: metadata access controls and on-disk encryption for SAS datasets.
... View more
09-12-2024
11:03 PM
Is there an equivalent capability for SAS 9.4's Metadata Bound Libraries in SAS Viya 4?
... View more
09-12-2024
06:20 AM
Hi @StuartRogers
One more question about the "Kerberos Hybrid Authentication with Protocol Transition" option.
Once the krb5-proxy sidecar container issues the S4U2Self it obtains a service ticket to itself (correct me if I am wrong).
Now let's say the Compute Server is trying to connect another server like SQL Server, will it issue now a S4U2Proxy request to support this?
... View more
09-05-2024
02:06 AM
Hi @gwootton
If I understand correctly the ECR lifecycle option is at the repository level and not at the registry level (correct me if I am wrong) so this means that I need to set it up for all the SAS repositories and there are dozens of them...
Has anyone tried this lifecycle approach in a production site?
I think the SAS Mirror Manager should really have a "cleanup" option since it can tell the exact image tags associated with each Cadence release and it can safely remove images from the CR.
... View more
08-27-2024
02:42 AM
SAS Mirror Manager can upload/push SAS images to some container registries like AWS ECR.
I suggest to add an option to allow to delete/remove SAS images in order to be able to cleanup the container registry.
For example, if I use SAS Mirror Manager to upload three SAS releases to AWS ECR: Stable 2024.04, 2024.05 and 2024.06. Now I want to delete all SAS images that belong to release Stable 2024.04 to cleanup my AWS ECR but there is no option in SAS Mirror Manager to do it.
... View more
- Find more ideas tagged with:
- Mirror Manager
See more ideas labeled with: