embedded-redis
embedded-redis copied to clipboard
Request to have Linux ppc64le support for embedded-redis
Need to run presto-redis on ppc64le server. The tests currently fail connecting to the embedded redis-server. As mentioned in git issue (https://github.com/prestodb/presto/issues/5548), need to add binary to the embedded-redis for Linux ppc64le.
Any pointer would be helpful.
Hi,
sure, doable. We'll need 3 things:
- Add the Architecture.PPC64 enum so we can specify:
RedisExecProvider customProvider = RedisExecProvider.defaultProvider()
.override(OS.UNIX, Architecture.PPC64, "/path/to/unix/ppc64/redis")
- Modify method to detect PPC64 architecture for Unix/Linux in Java, see OSDetector. getUnixArchitecture(),
- Embedded default redis 2.8.19 binary for PPC64 within jar, @ArchaB can you provide a link to downloadable binary? See https://github.com/kstyrc/embedded-redis/tree/master/src/main/resources
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 tar xvzf redis-stable.tar.gz cd redis-stable make
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
uname -m ppc64le
@kstyrc In your earlier response you mentioned "But you would be responsible for providing compiled binary of redis for PPC64. What do you think?" Had a doubt on which redis server would this mean. Is this Redis Server/presto-redis
@kstyrc In your earlier response you mentioned "But you would be responsible for providing compiled binary of redis for PPC64. What do you think?" Had a doubt on which redis server would this mean. Is this Redis Server/presto-redis
@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:
.
├── META-INF
│ ├── MANIFEST.MF
│ └── maven
│ └── com.orange.redis-embedded
│ └── embedded-redis
│ ├── pom.properties
│ └── pom.xml
└── redis
├── 2.8.5
│ ├── linux
│ │ └── redis-server
│ └── macosx
│ └── redis-server
├── 2.8.9
│ ├── linux
│ │ └── redis-server
│ └── macosx
│ └── redis-server
└── embedded
├── RedisServer.class
└── RedisServer$RedisServerEnum.class
Cc @gerrith3 @seth-priya
@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!
@kstyrc @turu could you please review this PR: https://github.com/kstyrc/embedded-redis/pull/117