-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request to have Linux ppc64le support for embedded-redis #71
Comments
Hi, sure, doable. We'll need 3 things:
RedisExecProvider customProvider = RedisExecProvider.defaultProvider()
.override(OS.UNIX, Architecture.PPC64, "/path/to/unix/ppc64/redis")
Will provide code for 1) and 2). Can you help me with 3)? I cannot find redis binary for PPC64 on redis.io/download page. |
@kstyrc , could not find the binaries in the mentioned link. For my testing I had installed the redis-server using the following commands on RHEL 7.2 PPC System wget http://download.redis.io/redis-stable.tar.gz |
I would like to avoid compiling sources as part of running embedded-redis in test. So on my side I will try to add PPC64 architecture detection, so you could write smth like: RedisExecProvider customProvider = RedisExecProvider.defaultProvider()
.override(OS.UNIX, Architecture.PPC64, "/path/to/compiled/ppc64/redis") But you would be responsible for providing compiled binary of redis for PPC64. What do you think? @ArchaB Could you provide me with the output of the following command on PPC64? > uname -m |
|
@kstyrc |
@kstyrc |
@kstyrc I'm trying to fix the presto-redis tests for ppc64le. Does this repository contribute to https://repo.maven.apache.org/maven2/com/orange/redis-embedded/embedded-redis/0.6/embedded-redis-0.6.jar? I don't see the resemblance from the jar contents:
|
@kstyrc and @electrum I found out that presto is still using https://github.com/gbrd/embedded-redis and support for ppc64le in this repository never realized. If both of you are still open to accepting the changes for adding ppc64le support, I'd like to work towards that here as well as on presto side. Please confirm. Thanks! |
Need to run presto-redis on ppc64le server. The tests currently fail connecting to the embedded redis-server.
As mentioned in git issue (prestodb/presto#5548), need to add binary to the embedded-redis for Linux ppc64le.
Any pointer would be helpful.
The text was updated successfully, but these errors were encountered: