-
Notifications
You must be signed in to change notification settings - Fork 314
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
Caused by: java.io.IOException: Unable to connect to provided ports 10000~10010 #346
base: revert-237-LIVY-255
Are you sure you want to change the base?
Commits on Nov 30, 2016
-
LIVY-255. Update the docs for Livy build and Spark2 support (#241)
* Update the docs related Livy build and Spark 2 support Change-Id: Id59c628e73da46a124f718b192fc92336ac8eace * Updating the doc Change-Id: Ibdeb06fde53d359e77aace780a6093b2cc6a70b7
Configuration menu - View commit details
-
Copy full SHA for cd10eed - Browse repository at this point
Copy the full SHA cd10eedView commit details
Commits on Dec 1, 2016
-
LIVY-248. Clean up how PySpark python intepreters are set. (#233)
Also added documentation for pyspark.
Configuration menu - View commit details
-
Copy full SHA for f52c0d9 - Browse repository at this point
Copy the full SHA f52c0d9View commit details
Commits on Dec 2, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 2a8e9cf - Browse repository at this point
Copy the full SHA 2a8e9cfView commit details
Commits on Dec 3, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a896305 - Browse repository at this point
Copy the full SHA a896305View commit details
Commits on Dec 5, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 8cf0eff - Browse repository at this point
Copy the full SHA 8cf0effView commit details
Commits on Dec 9, 2016
-
LIVY-264. Fixed PySpark %table magic returning wrong header. (#244)
%table returns wrong header if input is a list of rows. Workaround the issue by converting row to dict.
Configuration menu - View commit details
-
Copy full SHA for 923d96c - Browse repository at this point
Copy the full SHA 923d96cView commit details -
LIVY-268. Fixed flaky unit test. (#249)
- SparkYarnAppSpec.can kill spark-submit while it's running.
Configuration menu - View commit details
-
Copy full SHA for 1ee2ed8 - Browse repository at this point
Copy the full SHA 1ee2ed8View commit details
Commits on Dec 12, 2016
-
LIVY-233. SparkSession support for Job API. (#217)
Added sparkSession to expose Spark 2.0 SparkSession in JobContext. If SparkSession is not supported, it will throw an exception. Example: JobHandle<String> handler = client.submit(new Job<String>() { @OverRide public String call(JobContext jc) throws Exception { SparkSession session = jc.sparkSession(); return session.version(); } });
Configuration menu - View commit details
-
Copy full SHA for 1b72ce9 - Browse repository at this point
Copy the full SHA 1b72ce9View commit details -
LIVY-251. YARN session leaked if RSC connection times out (#234)
- When RSC connection times out, it should kill the application thru cluster manager to make sure nothing is leaked.
Configuration menu - View commit details
-
Copy full SHA for e82780b - Browse repository at this point
Copy the full SHA e82780bView commit details -
LIVY-261. Fixed SparkRInterpreter failed to include error message ran…
…domly. (#251) - Redirect stderr to stdout to avoid synchronization between stdout and stderr.
Configuration menu - View commit details
-
Copy full SHA for 6e427ca - Browse repository at this point
Copy the full SHA 6e427caView commit details
Commits on Dec 13, 2016
-
LIVY-250. Change livy.repl.jars to work with different scala interpre…
…ter (#235) Users can list both livy-repl_2.10 and livy-repl_2.11 jars and their dependencies in livy.repl.jars. Livy automatically picks the right jars according to Spark's Scala version and Scala jar versioning convention.
Configuration menu - View commit details
-
Copy full SHA for e4586cb - Browse repository at this point
Copy the full SHA e4586cbView commit details -
LIVY-271. traceback could be json list or json object which is mislea…
…ding (#252) * LIVY-271. traceback could be json list or json object which is misleading
Configuration menu - View commit details
-
Copy full SHA for 4cc999a - Browse repository at this point
Copy the full SHA 4cc999aView commit details
Commits on Dec 14, 2016
-
Minor. Fixed flaky unit test. (#254)
- InteractiveSessionSpec.should error out the session if the interpreter dies.
Configuration menu - View commit details
-
Copy full SHA for fe06299 - Browse repository at this point
Copy the full SHA fe06299View commit details
Commits on Dec 15, 2016
-
Configuration menu - View commit details
-
Copy full SHA for e4a52bf - Browse repository at this point
Copy the full SHA e4a52bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for de816f5 - Browse repository at this point
Copy the full SHA de816f5View commit details -
LIVY-260. repl is stuck in busy state if Scala interpreter returns so…
…me specific error. (#243) - Instead of using regex, parse for internal frames manually. - Repl in Scala 2.11 cleans internal frames internally. Skip internal frames cleaning.
Configuration menu - View commit details
-
Copy full SHA for 2ae091d - Browse repository at this point
Copy the full SHA 2ae091dView commit details
Commits on Dec 16, 2016
-
Configuration menu - View commit details
-
Copy full SHA for d3cc09b - Browse repository at this point
Copy the full SHA d3cc09bView commit details -
Minor. Fixed flaky unit test. (#257)
InteractiveSessionSpec.should report an error if accessing an unknown variable
Configuration menu - View commit details
-
Copy full SHA for e0b0b80 - Browse repository at this point
Copy the full SHA e0b0b80View commit details
Commits on Dec 21, 2016
-
Bump supported Spark version to 2.1.x (#258)
Change-Id: I1ff274c189212ad7c92dbaa597af68e947364b22
Configuration menu - View commit details
-
Copy full SHA for f6829a5 - Browse repository at this point
Copy the full SHA f6829a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4eec41b - Browse repository at this point
Copy the full SHA 4eec41bView commit details -
LIVY-276. Fixed test to timeout when Livy failed to restart. (#256)
Travis will upload logs for diagnosis.
Configuration menu - View commit details
-
Copy full SHA for 678839c - Browse repository at this point
Copy the full SHA 678839cView commit details
Commits on Dec 22, 2016
-
LIVY-165. Added session heartbeat to help notebooks to prevent leakag…
…e. (#247) Notebook applications like Jupyter might crash while livy is running. No one will clean up its corresponding Livy session and will be leaked. Heartbeat is added to address this. To keep a session alive, the notebook application must continously make GET requests to the interactive session. If no GET request is made within the heartbeat interval, livy-server will delete the session regardless to its state (busy, idle). Heartbeat is per session and is controlled by session property "heartbeatTimeoutInSecond". Its default is 0 and it means heartbeat is disabled. To enable heartbeat, please create the session with non-zero "heartbeatTimeoutInSecond" in the create request.
Configuration menu - View commit details
-
Copy full SHA for 69ac11e - Browse repository at this point
Copy the full SHA 69ac11eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 01f3b98 - Browse repository at this point
Copy the full SHA 01f3b98View commit details
Commits on Dec 26, 2016
-
LIVY-275. Add livy REST API to detect Livy version info (#262)
* Add livy REST API to get Livy build info Change-Id: I56c5116f6f74357d06ceabcad38ac5988003ccf5 * Change some typos Change-Id: If47570766e19b98b88de521aa57dfae1ae5b48d9 * Address the comments Change-Id: I961979534281e7bb5030a8c471e5245c7dedca82
Configuration menu - View commit details
-
Copy full SHA for c9f947e - Browse repository at this point
Copy the full SHA c9f947eView commit details
Commits on Dec 27, 2016
-
LIVY-284. Make Livy server request log configurable (#263)
* Make Livy server request log configurable Change-Id: If880908aa1afb02522a9278ddda185715a1f98f0 * Address the comments Change-Id: I04bb29bf873d7f6341afb42ad4aad34cab35900c
Configuration menu - View commit details
-
Copy full SHA for 6077628 - Browse repository at this point
Copy the full SHA 6077628View commit details
Commits on Jan 4, 2017
-
LIYV-289. Fix NPE in ContextLauncher when Driver is not successfully …
…started and expose the state of RSCClient (#268) Change-Id: Iae8b04393c4c52d87e87bd451916d6191007db08
Configuration menu - View commit details
-
Copy full SHA for f5dea60 - Browse repository at this point
Copy the full SHA f5dea60View commit details
Commits on Jan 5, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 9974aac - Browse repository at this point
Copy the full SHA 9974aacView commit details -
Configuration menu - View commit details
-
Copy full SHA for 95f1459 - Browse repository at this point
Copy the full SHA 95f1459View commit details
Commits on Jan 10, 2017
-
LIVY-295. Make livy.rsc.jars a LivyConf. (#271)
Currently livy.rsc.jars is a RSC configuration, which means user should specify this configuration each time when creating a session, this is semantically incorrect and inconvenient, also equivalent to livy.repl.jars, we should change this to Livy configuration. Besides current doc uses livy.jars as a configuration name, no code honors this configuration name, this should also be updated.
Configuration menu - View commit details
-
Copy full SHA for 6215413 - Browse repository at this point
Copy the full SHA 6215413View commit details -
LIVY-294. HiveContext is always created instead of SQLContext for pys…
…park. (#270) HiveContext is always created no matter whether we enable hiveContext through spark.repl.enableHiveContext. The root cause is that we depends on shell.py of spark. and unfortunately HiveContext would not initialize itself when created, but defer its initialization until any methods is called. This change would call sqlContext.tables() to check whether hiveContext can work properly.
Configuration menu - View commit details
-
Copy full SHA for 89099b0 - Browse repository at this point
Copy the full SHA 89099b0View commit details
Commits on Jan 11, 2017
-
LIVY-273. Add Spnego support for Java/scala and Python Job API client (…
…#265) * Add Spnego support for Java Job API client Change-Id: I8cce80d75a549e573da70be9ef1aeb94457829a4 * Add Python Job API kerberos support Change-Id: I022b3c14a439321deda3ae5e0cacbc2b18ef9830 * Fix python style Change-Id: I9e9f00dde93c471c6fa1fd5f71842945f527c73b * Address the comments Change-Id: I4994122e8e28276efe4f00fc7ff8e02e0a7a6c60
1Configuration menu - View commit details
-
Copy full SHA for b75bc11 - Browse repository at this point
Copy the full SHA b75bc11View commit details
Commits on Jan 12, 2017
-
LIVY-280. Livy session leakage issue when app submission timeout (#259)
* LIVY-280. Livy session leakage issue when submitting app timeout * address comments * address comments
Configuration menu - View commit details
-
Copy full SHA for dc0bc1d - Browse repository at this point
Copy the full SHA dc0bc1dView commit details -
code should be re-escaped in R interpreter (#276)
Change-Id: I014b79102c0759b96c89a5c9177abd286903402a
Configuration menu - View commit details
-
Copy full SHA for 354e47d - Browse repository at this point
Copy the full SHA 354e47dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4024f14 - Browse repository at this point
Copy the full SHA 4024f14View commit details -
Configuration menu - View commit details
-
Copy full SHA for c50fb1c - Browse repository at this point
Copy the full SHA c50fb1cView commit details
Commits on Jan 13, 2017
-
LIVY-300. Fixed a race condition in rsc's RPC channel. (#274)
In `Rpc.call()`, RPC function call messages are enqueued to the send buffer of the Channel on `Channel.write()` call because it's called outside of the netty Channel IO event loop. RPC replies are handled by `RpcDispatcher.channelRead0`. It calls `RpcDispatcher.writeMessage()` which calls `Channel.write()` to send RPC reply messages to the Channel. `RpcDispatcher.channelRead0` is executed in the event loop which means `Channel.write()` writes messages directly to the socket and bypassing the send buffer. When one side of the RPC channel is making a RPC call but at the same time received another RPC call from the other side. Then this race condition might happen: - Send call header - Send reply header - Send reply payload - Send call payload This means RPC reply messages might preempt the on going RPC call and messages will be sent out of order. To fix this, we have to prevent`RpcDispatcher.channelRead0` from being called while `Rpc.call()` is sending messages. One of the solutions is changing Rpc.call()` to write messages in the event loop.
Configuration menu - View commit details
-
Copy full SHA for dc496a3 - Browse repository at this point
Copy the full SHA dc496a3View commit details
Commits on Jan 19, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 5418a18 - Browse repository at this point
Copy the full SHA 5418a18View commit details
Commits on Jan 21, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 69462b9 - Browse repository at this point
Copy the full SHA 69462b9View commit details
Commits on Feb 8, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 34f6c7f - Browse repository at this point
Copy the full SHA 34f6c7fView commit details
Commits on Feb 10, 2017
-
Bump to 0.4.0-SNAPSHOT for master branch (#282)
Change-Id: I32dd970bfa1150e3b47ecbfd7c1a7c348bb7e259
Configuration menu - View commit details
-
Copy full SHA for 9575d8f - Browse repository at this point
Copy the full SHA 9575d8fView commit details
Commits on Feb 13, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 807036a - Browse repository at this point
Copy the full SHA 807036aView commit details -
LIVY-308. Avoid enabling Hive by default in Spark2. (#287)
Fixed broken integration test on Spark 2.1.
Configuration menu - View commit details
-
Copy full SHA for 663c613 - Browse repository at this point
Copy the full SHA 663c613View commit details
Commits on Feb 14, 2017
-
Configuration menu - View commit details
-
Copy full SHA for a36e44f - Browse repository at this point
Copy the full SHA a36e44fView commit details
Commits on Feb 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 693a795 - Browse repository at this point
Copy the full SHA 693a795View commit details -
Configuration menu - View commit details
-
Copy full SHA for b872978 - Browse repository at this point
Copy the full SHA b872978View commit details -
Minor. Relax the permission constraint of recovery state store folder. (
#291) Emit warnings instead of throwing fatal errors.
Configuration menu - View commit details
-
Copy full SHA for f7c434c - Browse repository at this point
Copy the full SHA f7c434cView commit details
Commits on Feb 17, 2017
-
Configuration menu - View commit details
-
Copy full SHA for ed1c86e - Browse repository at this point
Copy the full SHA ed1c86eView commit details
Commits on Feb 20, 2017
-
Fix issue for some parent poms (#295)
Change-Id: Ibf549db71b0f6dfc2004c3ff602e92860a38a093
Configuration menu - View commit details
-
Copy full SHA for 14c29e4 - Browse repository at this point
Copy the full SHA 14c29e4View commit details
Commits on Feb 22, 2017
-
LIVY-306. Removed hard-coded minimum timeout value. (#290)
Currently a session timeout can't be configured below 1h. This is due to a hard-coded value that was missed in the clean up of LIVY-114 and LIVY-127. Removed the limit and the conf value (default of 1h) will be used.
Configuration menu - View commit details
-
Copy full SHA for a72bbff - Browse repository at this point
Copy the full SHA a72bbffView commit details -
LIVY-320. Livy python-api client test failing. (#298)
Specified fields for client test. Travis CI looks to be defaulted to python 2.7, so it never came across this issue.
Configuration menu - View commit details
-
Copy full SHA for 6bfe177 - Browse repository at this point
Copy the full SHA 6bfe177View commit details -
LIVY-240. Improve the session gc mechanism. (#277)
Current session gc mechanism has some issues: - Stopped session still needs to wait to timeout to gc-ed. -Batch session will be gc-ed unexpectedly in run-time when timing out, which makes long running application impossible. - Sometimes user doesn't want to stop idle sessions. Changes of this commit: - Never check the activity of batch session, which means batch session will only be gc-ed after stop. - Add a configuration to turn off activity check for interactive session, which meets some usage scenarios. - Add a configuration to control how long a finished session state will be kept in memory before cleaned out.
Configuration menu - View commit details
-
Copy full SHA for bfdb5a1 - Browse repository at this point
Copy the full SHA bfdb5a1View commit details
Commits on Feb 23, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 2aa910c - Browse repository at this point
Copy the full SHA 2aa910cView commit details
Commits on Feb 24, 2017
-
LIVY-303. Add statement retention mechanism. (#279)
To avoid OOM for long running sessions, introduce statement retention mechanism to remove old statements. Also refactor the statement state code to make it more clear.
Configuration menu - View commit details
-
Copy full SHA for 932d397 - Browse repository at this point
Copy the full SHA 932d397View commit details
Commits on Feb 27, 2017
-
LIVY-293: Redirect spark-submit log to REST response Log field for in…
…teractive sessions. (#297) Passing driverProcess to SparkApp for interactive sessions so session/log will return spark-submit log.
Configuration menu - View commit details
-
Copy full SHA for d74d5a9 - Browse repository at this point
Copy the full SHA d74d5a9View commit details
Commits on Mar 4, 2017
-
LIVY-90. Update conf dir to use templates (#301)
- Added instructions to livy-client template. - Filled out livy-client.conf.template. - Updated conf naming to all camelCase, switched conf files to templates and updated .gitignore.
Configuration menu - View commit details
-
Copy full SHA for 76d969e - Browse repository at this point
Copy the full SHA 76d969eView commit details -
LIVY-319. Unify the indent for all POM files. (#302)
Updated pom files that used 4 space indent to use 2 space indent to match the remaining pom files.
Configuration menu - View commit details
-
Copy full SHA for 126b57e - Browse repository at this point
Copy the full SHA 126b57eView commit details
Commits on Mar 12, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 70f23b9 - Browse repository at this point
Copy the full SHA 70f23b9View commit details
Commits on Mar 13, 2017
-
LIVY-326. Change Hadoop dependencies to Apache Hadoop (#306)
* Change Hadoop dependencies to Apache Hadoop Change-Id: I5500cc0061b03af1587700b7b0a7a147bbf0a333 * Change to use Apache Hadoop 2.7.3 Change-Id: Ied6a69e28fb4a9e4d1dcd97595c7ab253f1eaf82
Configuration menu - View commit details
-
Copy full SHA for fbccb69 - Browse repository at this point
Copy the full SHA fbccb69View commit details -
LIVY-329. Fix two SSL issues. (#308)
- Livy server url is exposed as http URL even https is enabled, so we should handle this. - Livy server SSL keystore password and key password currently set to same configurations, which should be separated.
Configuration menu - View commit details
-
Copy full SHA for 2ff8f5c - Browse repository at this point
Copy the full SHA 2ff8f5cView commit details
Commits on Mar 14, 2017
-
LIVY-331. Fix flaky test 'interactive session should not gc-ed if ses…
…sion timeout check is off'. (#310)
Configuration menu - View commit details
-
Copy full SHA for eb7e6cc - Browse repository at this point
Copy the full SHA eb7e6ccView commit details
Commits on Mar 16, 2017
-
Make several modules push-able to repo (#305)
Change-Id: I9daec6ac7fdb2c9f727cbab6db042ec144c4edb8
Configuration menu - View commit details
-
Copy full SHA for b7cc00a - Browse repository at this point
Copy the full SHA b7cc00aView commit details
Commits on Mar 17, 2017
-
LIVY-249. Update livy-server script to include status command and ret…
…urn 1 on error. (#311) Currently if livy-server fails to start it will still return 0 (success), this has been fixed. I also added a livy-server status command that will return a status output similar to that of livy-server start when it's already running or livy-server stop when it's already stopped. Lastly I updated all output text to use livy-server instead of livy_server since that's the actual name of the script. Tested manually.
Configuration menu - View commit details
-
Copy full SHA for 5e6f9ed - Browse repository at this point
Copy the full SHA 5e6f9edView commit details
Commits on Mar 23, 2017
-
LIVY-313. Fixed SparkRInterpreter always returning success. (#307)
* LIVY-313. Fixed SparkRInterpreter always returning success. - Stopped redirecting stderr to stdout. - Continue to read ErrorStream (it was only being read once). - Checking for any errors returned by stderr before returning success. * Fixing scalastyle check error * Changing the way errors are handled in SparkRInterpreter * Fixing scalastyle check error * Updating SparkRSessionSpec
Configuration menu - View commit details
-
Copy full SHA for 0de0e28 - Browse repository at this point
Copy the full SHA 0de0e28View commit details
Commits on Apr 5, 2017
-
LIVY-287. Add Deprecation to Livy Configurations and update naming. (#…
…300) Updates to Livy configurations - Added config deprecation with alternatives to ClientConf, HTTPConf, RSCConf, and LivyConf. - Added framework for deprecation without alternatives when the need arises. - Updated naming conventions in code and templates to use - instead of _ or camelCase and deprecated previous configs. - Updated TestClientConf and added a new test.
Configuration menu - View commit details
-
Copy full SHA for 221aa9c - Browse repository at this point
Copy the full SHA 221aa9cView commit details
Commits on Apr 9, 2017
-
LIVY-323. Fixed livy-repl doesn't start with a lot of spark packages. (…
…#312) Some Spark packages are depending on scala-reflect 2.11.0 and it conflicts with Spark's scala version 2.11.8. This's not Livy's fault actually but doesn't hurt to make Livy more fault tolerant. Since the scala-reflect jar with the correct version must already be in CLASSPATH, fixed livy-repl to not load user supplied scala-reflect jars.
Configuration menu - View commit details
-
Copy full SHA for 07f6072 - Browse repository at this point
Copy the full SHA 07f6072View commit details
Commits on Apr 18, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 511a05f - Browse repository at this point
Copy the full SHA 511a05fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7212e3f - Browse repository at this point
Copy the full SHA 7212e3fView commit details
Commits on Apr 28, 2017
-
Remove guava api in Livy (#321)
Change-Id: Ia8b635dbb9e8ef8e55bbe566967c5abaa5e07020
Configuration menu - View commit details
-
Copy full SHA for e8c3e06 - Browse repository at this point
Copy the full SHA e8c3e06View commit details -
Fix two SparkR test issue regarding to different versions of R (#322)
Change-Id: Id301749a5e678666df771aa8f02cce149b56ff93
Configuration menu - View commit details
-
Copy full SHA for f5ef489 - Browse repository at this point
Copy the full SHA f5ef489View commit details
Commits on May 9, 2017
-
LIVY-355. Refactor statement progress tracker to fix binary compatibl…
…e issue (#323) * Refactor statement progress tracker to fix binary compatible issue Change-Id: Ie91fd77472aeebe138bd6711a0baa82269a6b247 * refactor again to simplify the code Change-Id: I9380bcb8dd2b594250783633a3c68e290ac7ea28 * isolate statementId to job group logic Change-Id: If554aee2c0b3d96b54804f94cbb8df9af7843ab4
Configuration menu - View commit details
-
Copy full SHA for 0ddcaf6 - Browse repository at this point
Copy the full SHA 0ddcaf6View commit details -
LIVY-342. Create Livy UI: Create Web UI Servlet and All Sessions Page (…
…#319) * squash of original ui poc code * Initial All Sessions Page code * finished all-sessions page and cleaned up code * Moved metrics and added ui redirect, added no sessions message * added conf to template, cleaned up missed code from last commit * UI enable/disable no long configureable, always on * nit * Address review and fixed some html/css errors * Fixed ITs and added a redirect to metrics when ui is disabled
Configuration menu - View commit details
-
Copy full SHA for 61b206e - Browse repository at this point
Copy the full SHA 61b206eView commit details
Commits on May 12, 2017
-
Minor. Add session information log when session is created (#325)
* Add session information log when session is created Change-Id: I8702ebe1d893cf328b4490e5b5d09f3afd02b7ce * add more logs Change-Id: I969edf4e680e59e3ecfbaa50431ae61bd03d4795 * simplify the code Change-Id: If2c7876ddb6020ace3872c9ae639d69d58b02f48 * Address the comments Change-Id: Iba5f10ad73ff67b97af8292769b254346b8ef7c8
Configuration menu - View commit details
-
Copy full SHA for d51e998 - Browse repository at this point
Copy the full SHA d51e998View commit details -
LIVY-358. Make JettyServer Http request and response header size conf…
…igurable (#329) * Provide Jetty Http Request/Response Header Size Configuration Kerberos over http requires larger header sizes than the default, or the HTTP Error 413 Request entity too large will be returned. This patch increases the default for Livy to 128K and also allows this to be configurable. * Change the conf key name Change-Id: Id274c8cc60d30e5d778f9c447502b7e7a789a8f0
Configuration menu - View commit details
-
Copy full SHA for 59af39d - Browse repository at this point
Copy the full SHA 59af39dView commit details
Commits on May 18, 2017
-
LIVY-358. [Follow-up] Add unit test to verify header size configurati…
…ons (#331) * Add unit test to verify large header size configuration Change-Id: I6c231f9fc9773d1ea40313661b7c49ccfaa44796 * Style fix Change-Id: I24e617f95fd3e45a674a6b5a691428f0fdabcd89 * Style fix Change-Id: I91e71979499da8ebba41223b6fe41862de168d03 * Revert the changes Change-Id: Id7bbd1b2378867c8534b900bc7ba9b1234a9b985 * Add configurations to livy.conf.template Change-Id: I84d428869bc5cc22aa7f00c6c603ea4a6b052964
Configuration menu - View commit details
-
Copy full SHA for 2abb8a3 - Browse repository at this point
Copy the full SHA 2abb8a3View commit details
Commits on Jun 2, 2017
-
Make sure to install setuptools less then version 36.0.0 to avoid mod…
…ule six not found issue (#341) Change-Id: I7ba64be56354be5a03e6f6b349990af6b662e457
Configuration menu - View commit details
-
Copy full SHA for 02eef9a - Browse repository at this point
Copy the full SHA 02eef9aView commit details
Commits on Jun 8, 2017
-
Livy:337 Binding RPCServer to user provided port and not random port (#…
…334) * Code changes in RPCserver for user provided port * Indentation Changes * Indentation Changes * Indentation Changes * Indentation Changes * Configuring Port Range * Documentation Changed * launcher.port.range will take care of launching RPC * Checkstyle changes * Checkstyle changes * Dummy push * Code changes * Changed BindException Handling to SocketException Handling * Changed Import Order * Code changes to increase port range * Set Port isConntect to true * Indentation Changes & port range in livy-client.conf.template * Indentation changes * Changed visibilty of method private * Indentation Changes * Indenetation Changes * Unit test case to test port range * Checkstyle changes * Unit test case for port range * Added comment for Port Range Configuration and increase port range for unit test case
Configuration menu - View commit details
-
Copy full SHA for 9ae24d0 - Browse repository at this point
Copy the full SHA 9ae24d0View commit details