-
Notifications
You must be signed in to change notification settings - Fork 25.2k
SQL: Handle uberjar scenario where the ES jdbc driver file is bundled in another jar #51856
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
Changes from all commits
a132138
77cb232
0035ed2
1423fda
2654304
aa653ef
d8f64b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
import java.io.IOException; | ||
import java.net.URL; | ||
import java.net.URLConnection; | ||
import java.util.Collections; | ||
import java.util.Enumeration; | ||
import java.util.LinkedHashSet; | ||
|
@@ -86,26 +87,34 @@ static byte[] from(String ver) { | |
// This is similar to how Elasticsearch's Build class digs up its build information. | ||
// Since version info is not critical, the parsing is lenient | ||
URL url = Version.class.getProtectionDomain().getCodeSource().getLocation(); | ||
String urlStr = url.toString(); | ||
CURRENT = extractVersion(url); | ||
} | ||
|
||
static Version extractVersion(URL url) { | ||
String urlStr = url.toString(); | ||
byte maj = 0, min = 0, rev = 0; | ||
String ver = "Unknown"; | ||
String hash = ver; | ||
|
||
if (urlStr.endsWith(".jar")) { | ||
try (JarInputStream jar = new JarInputStream(url.openStream())) { | ||
Manifest manifest = jar.getManifest(); | ||
hash = manifest.getMainAttributes().getValue("Change"); | ||
ver = manifest.getMainAttributes().getValue("X-Compile-Elasticsearch-Version"); | ||
byte[] vers = from(ver); | ||
maj = vers[0]; | ||
min = vers[1]; | ||
rev = vers[2]; | ||
|
||
if (urlStr.endsWith(".jar") || urlStr.endsWith(".jar!/")) { | ||
try { | ||
URLConnection conn = url.openConnection(); | ||
conn.setUseCaches(false); | ||
|
||
try (JarInputStream jar = new JarInputStream(conn.getInputStream())) { | ||
Manifest manifest = jar.getManifest(); | ||
hash = manifest.getMainAttributes().getValue("Change"); | ||
ver = manifest.getMainAttributes().getValue("X-Compile-Elasticsearch-Version"); | ||
byte[] vers = from(ver); | ||
maj = vers[0]; | ||
min = vers[1]; | ||
rev = vers[2]; | ||
} | ||
} catch (Exception ex) { | ||
throw new IllegalArgumentException("Detected Elasticsearch JDBC jar but cannot retrieve its version", ex); | ||
} | ||
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. Should we add a 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. I don't think it's needed to close the URLConnection (actually, the class doesn't have a method to close/terminate it), only its stream: https://docs.oracle.com/javase/tutorial/networking/urls/readingWriting.html |
||
} | ||
CURRENT = new Version(ver, hash, maj, min, rev); | ||
return new Version(ver, hash, maj, min, rev); | ||
} | ||
|
||
@Override | ||
|
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.
I know this is unmodified code, however, it's noteworthy that server/src/main/java/org/elasticsearch/Version.java parses ints, not bytes. Not sure if that's because it later does some int maths with the components, or because it reserves the possibility to use some tagging values at some point (like
7.2.222
for a special release). Just mentioning it, should we ever want to align this.