-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Update zookeeper version to fix common vulnerabilities and exposures(Do not review) #24403
Draft
bibith4
wants to merge
3
commits into
prestodb:master
Choose a base branch
from
bibith4:zookeeper_update_v1.1.6
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 0 additions & 52 deletions
52
presto-accumulo/src/test/java/com/facebook/presto/accumulo/MiniAccumuloConfigUtil.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
presto-accumulo/src/test/java/com/facebook/presto/accumulo/TestingAccumuloServer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
package com.facebook.presto.accumulo; | ||
|
||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import org.apache.accumulo.core.client.AccumuloException; | ||
import org.apache.accumulo.core.client.AccumuloSecurityException; | ||
import org.apache.accumulo.core.client.Connector; | ||
import org.apache.accumulo.core.client.ZooKeeperInstance; | ||
import org.apache.accumulo.core.client.security.tokens.PasswordToken; | ||
import org.testcontainers.containers.FixedHostPortGenericContainer; | ||
import org.testcontainers.containers.wait.strategy.Wait; | ||
|
||
import java.io.IOException; | ||
import java.time.Duration; | ||
|
||
import static java.lang.String.format; | ||
public class TestingAccumuloServer | ||
{ | ||
private static final int ACCUMULO_MASTER_PORT = 9999; | ||
private static final int ACCUMULO_TSERVER_PORT = 9997; | ||
private static final int ZOOKEEPER_PORT = 2181; | ||
private static final TestingAccumuloServer instance = new TestingAccumuloServer(); | ||
private final FixedHostPortGenericContainer<?> accumuloContainer; | ||
public static TestingAccumuloServer getInstance() | ||
{ | ||
return instance; | ||
} | ||
private TestingAccumuloServer() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has this been picked from Trino ? If so, can you follow the attribution guidelines and link to the commit you used |
||
{ | ||
accumuloContainer = new FixedHostPortGenericContainer<>("ghcr.io/trinodb/testing/accumulo:74"); | ||
accumuloContainer.withFixedExposedPort(ACCUMULO_MASTER_PORT, ACCUMULO_MASTER_PORT); | ||
accumuloContainer.withFixedExposedPort(ACCUMULO_TSERVER_PORT, ACCUMULO_TSERVER_PORT); | ||
accumuloContainer.withExposedPorts(ZOOKEEPER_PORT); | ||
accumuloContainer.withCreateContainerCmdModifier(cmd -> cmd | ||
.withHostName("localhost") | ||
.withEnv("ADDRESS=0.0.0.0") | ||
.withEntrypoint("supervisord", "-c", "/etc/supervisord.conf")); | ||
accumuloContainer.waitingFor(Wait.forHealthcheck().withStartupTimeout(Duration.ofMinutes(10))); | ||
// No need for an explicit stop since this server is a singleton | ||
// and the container will be stopped by TestContainers on shutdown | ||
// TODO Change this class to not be a singleton | ||
// https://github.com/prestosql/presto/issues/5842 | ||
accumuloContainer.start(); | ||
try { | ||
accumuloContainer.execInContainer("wget", "-P", "/usr/local/lib/accumulo/lib/ext/", "https://repo1.maven.org/maven2/com/facebook/presto/presto-accumulo/0.289/presto-accumulo-0.289.jar"); | ||
accumuloContainer.execInContainer("mv", "/usr/local/lib/accumulo/lib/ext/presto-accumulo-0.289.jar", "/usr/local/lib/accumulo/lib/ext/presto-accumulo-0.290-SNAPSHOT.jar"); | ||
} | ||
catch (IOException | InterruptedException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
public String getInstanceName() | ||
{ | ||
return "default"; | ||
} | ||
public String getZooKeepers() | ||
{ | ||
return format("%s:%s", accumuloContainer.getHost(), accumuloContainer.getMappedPort(ZOOKEEPER_PORT)); | ||
} | ||
public String getUser() | ||
{ | ||
return "root"; | ||
} | ||
public String getPassword() | ||
{ | ||
return "secret"; | ||
} | ||
public Connector getConnector() | ||
{ | ||
try { | ||
ZooKeeperInstance instance = new ZooKeeperInstance(getInstanceName(), getZooKeepers()); | ||
return instance.getConnector(getUser(), new PasswordToken(getPassword())); | ||
} | ||
catch (AccumuloException | AccumuloSecurityException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JFYI - We do have an upgrade to Kafka dependencies as a WIP too -#24382
It should not impact this PR (tests seem to pass) cc : @ZacBlanco