Skip to content

Instantly share code, notes, and snippets.

@sblack4
Last active August 30, 2018 23:59
Show Gist options
  • Select an option

  • Save sblack4/7206c7bb83f505a3450844310d4e3f4d to your computer and use it in GitHub Desktop.

Select an option

Save sblack4/7206c7bb83f505a3450844310d4e3f4d to your computer and use it in GitHub Desktop.
Zeppelin notebook to view a mocked twitter stream
{"paragraphs":[{"title":"Add your Event Hub connection details","text":"%spark2\nz.angularBind(\"BIND_ObjectStorage_Container\", \"\")\nz.angularBind(\"BIND_OEHCS_ConnectionDescriptor\", z.input(\"OEHCS_ConnectionDescriptor\",\"129.150.212.124:6667\"))\nz.angularBind(\"Tweets_Topic\", z.input(\"Tweets_Topic\",\"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\"))\nz.angularBind(\"Survey_Topic\", z.input(\"Survey_Topic\",\"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\"))\n\n//save these for pyspark\nz.put(\"Tweets_Topic\", z.angular(\"Tweets_Topic\"))\nz.put(\"Survey_Topic\", z.angular(\"Survey_Topic\"))\nz.put(\"BIND_OEHCS_ConnectionDescriptor\", z.angular(\"BIND_OEHCS_ConnectionDescriptor\"))\n\n//save these for shell\nscala.tools.nsc.io.File(\"/var/lib/zeppelin/oehcs.sh\").writeAll(\n \"export ObjectStorage_Container=\\\"\"+z.angular(\"BIND_ObjectStorage_Container\")+\"\\\"\\n\" +\n \"export OEHCS_ConnectionDescriptor=\\\"\"+z.angular(\"BIND_OEHCS_ConnectionDescriptor\")+\"\\\"\\n\" +\n \"export Tweets_Topic=\\\"\"+z.angular(\"Tweets_Topic\")+\"\\\"\\n\" +\n \"export Survey_Topic=\\\"\"+z.angular(\"Survey_Topic\")+\"\\\"\\n\"\n)\nprintln(\"done\")\n","dateUpdated":"2018-08-30T23:47:24+0000","config":{"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":false,"title":true,"results":{},"enabled":true},"settings":{"params":{"OEHCS_Topic":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","OEHCS_ConnectionDescriptor":"129.150.212.124:6667","Survey_Topic":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","Tweets_Topic":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere"},"forms":{"OEHCS_ConnectionDescriptor":{"name":"OEHCS_ConnectionDescriptor","displayName":"OEHCS_ConnectionDescriptor","type":"input","defaultValue":"129.150.212.124:6667","hidden":false,"$$hashKey":"object:916"},"Tweets_Topic":{"name":"Tweets_Topic","displayName":"Tweets_Topic","type":"input","defaultValue":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","hidden":false,"$$hashKey":"object:918"},"Survey_Topic":{"name":"Survey_Topic","displayName":"Survey_Topic","type":"input","defaultValue":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","hidden":false,"$$hashKey":"object:917"}}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"done\n"}]},"apps":[],"jobName":"paragraph_1535476177475_815373735","id":"20180802-010400_34666201","dateCreated":"2018-08-28T17:09:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"focus":true,"$$hashKey":"object:306","user":"anonymous","dateFinished":"2018-08-30T23:47:26+0000","dateStarted":"2018-08-30T23:47:24+0000"},{"title":"Rewrite our config file","text":"%spark2\n\nimport java.io.File\nimport java.io.PrintWriter\nimport java.nio.file.{Files, StandardCopyOption}\nimport scala.io.Source\n\n val surveyTopic = z.angular(\"Survey_Topic\").toString\n val tweetTopic = z.angular(\"Tweets_Topic\").toString\n println(\"surveyTopic:\"+surveyTopic)\n println(\"tweetTopic: \" + tweetTopic)\n\n val brokers=z.angular(\"BIND_OEHCS_ConnectionDescriptor\").toString\n println(\"brokers:\"+brokers)\n\nval filename = \"/opt/kafka_producer/config.py\" // original file name\n\nval origFile = new File(filename)\nval tmpFile = new File(\"/tmp/config.py\")\n\nval pw = new PrintWriter(tmpFile)\n\nSource.fromFile(filename).getLines\n .map{ line => \n if (line.contains(\"topic1\")){\n s\"topic1 = '$surveyTopic' \"\n } else if (line.contains(\"topic\")){\n s\"topic = '$tweetTopic' \"\n } else if (line.contains(\"kafka_host\")) {\n s\"kafka_host = '$brokers' \"\n } else {\n line\n }\n }.foreach(line => {\n println(line)\n pw.println(line)\n })\n\npw.close()\nFiles.move(tmpFile.toPath, origFile.toPath, StandardCopyOption.ATOMIC_MOVE)","dateUpdated":"2018-08-30T23:51:39+0000","config":{"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"\nimport java.io.File\n\nimport java.io.PrintWriter\n\nimport java.nio.file.{Files, StandardCopyOption}\n\nimport scala.io.Source\n\nsurveyTopic: String = idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\n\ntweetTopic: String = idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\nsurveyTopic:idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\ntweetTopic: idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\n\nbrokers: String = 129.150.212.124:6667\nbrokers:129.150.212.124:6667\n\nfilename: String = /opt/kafka_producer/config.py\n\norigFile: java.io.File = /opt/kafka_producer/config.py\n\ntmpFile: java.io.File = /tmp/config.py\n\npw: java.io.PrintWriter = java.io.PrintWriter@30c2ab04\nimport logging \n\n\ntopic = 'idcs-363b4236183e42f68a92d1c5ad79728e-lumiere' \nkafka_host = '129.150.212.124:6667' \nkey = \"tweet\"\n\nlog_level = logging.INFO\ntimeout = 1\n\n# csv_file = \"tickets.csv\"\ncsv_file = \"avocado-text-edit.csv\"\nlog_file = \"magic_log.log\"\n\nres35: java.nio.file.Path = /opt/kafka_producer/config.py\n"}]},"apps":[],"jobName":"paragraph_1535476177489_820760220","id":"20180802-011426_1200342079","dateCreated":"2018-08-28T17:09:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:307","user":"anonymous","dateFinished":"2018-08-30T23:51:41+0000","dateStarted":"2018-08-30T23:51:39+0000"},{"title":"Make sure that the file has the right details","text":"%spark2\n\nimport scala.io.Source\n\nval filename = \"/opt/kafka_producer/config.py\" // original file\n\nfor (line <- Source.fromFile(filename).getLines) {\n println(line)\n}","dateUpdated":"2018-08-30T23:52:23+0000","config":{"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"\nimport scala.io.Source\n\nfilename: String = /opt/kafka_producer/config.py\nimport logging \n\n\ntopic = 'idcs-363b4236183e42f68a92d1c5ad79728e-lumiere' \nkafka_host = '129.150.212.124:6667' \nkey = \"tweet\"\n\nlog_level = logging.INFO\ntimeout = 1\n\n# csv_file = \"tickets.csv\"\ncsv_file = \"avocado-text-edit.csv\"\nlog_file = \"magic_log.log\"\n"}]},"apps":[],"jobName":"paragraph_1535476177495_819990722","id":"20180802-011609_1728157391","dateCreated":"2018-08-28T17:09:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:308","user":"anonymous","dateFinished":"2018-08-30T23:52:23+0000","dateStarted":"2018-08-30T23:52:23+0000"},{"title":"Run it! ","text":"%sh\n\n\nsudo chmod +x /opt/kafka_producer/run.sh\n\ncd /opt/kafka_producer/\n\nsudo ./run.sh &\n","dateUpdated":"2018-08-30T23:52:29+0000","config":{"tableHide":false,"editorSetting":{"language":"sh","editOnDblClick":"false"},"colWidth":12,"editorMode":"ace/mode/sh","editorHide":true,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[]},"apps":[],"jobName":"paragraph_1535476177497_817682229","id":"20180802-013226_1508429185","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:309"},{"title":"See the computer magic","text":"%sh\n\ntail -n 30 /opt/kafka_producer/*.log\n","dateUpdated":"2018-08-30T23:52:44+0000","config":{"tableHide":false,"editorSetting":{"language":"sh","editOnDblClick":"false"},"colWidth":12,"editorMode":"ace/mode/sh","editorHide":true,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"INFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"New York\", \"text\": \"By the use of this ointment--one shilling the box--\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"San Francisco\", \"text\": \"Allow me to sell you a couple?\\ufffd\\ufffd\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Miami\", \"text\": \"\\ufffd\\ufffd\\ufffdYou are old,\\ufffd\\ufffd said the youth, \\ufffd\\ufffd\\ufffdand your jaws are too weak\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Washington\", \"text\": \"For anything tougher than suet;\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Los Angeles\", \"text\": \"Yet you finished the goose, with the bones and the beak--\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Chicago\", \"text\": \"Pray how did you manage to do it?\\ufffd\\ufffd\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Seattle\", \"text\": \"\\ufffd\\ufffd\\ufffdIn my youth,\\ufffd\\ufffd said his father, \\ufffd\\ufffd\\ufffdI took to the law,\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"New York\", \"text\": \"And argued each case with my wife;\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"New York\", \"text\": \"And the muscular strength, which it gave to my jaw,\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"New York\", \"text\": \"Has lasted the rest of my life.\\ufffd\\ufffd\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Los Angeles\", \"text\": \"\\ufffd\\ufffd\\ufffdYou are old,\\ufffd\\ufffd said the youth, \\ufffd\\ufffd\\ufffdone would hardly suppose\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"New York\", \"text\": \"That your eye was as steady as ever;\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Seattle\", \"text\": \"Yet you balanced an eel on the end of your nose--\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Seattle\", \"text\": \"What made you so awfully clever?\\ufffd\\ufffd\"}\nINFO:root:line# \n line: {\"date\": \"03/04/2018\", \"city\": \"Miami\", \"text\": \"\\ufffd\\ufffd\\ufffdI have answered three questions, and that is enough,\\ufffd\\ufffd\"}\n"}]},"apps":[],"jobName":"paragraph_1535476177499_818451726","id":"20180802-014756_510190005","dateCreated":"2018-08-28T17:09:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:310","user":"anonymous","dateFinished":"2018-08-30T23:52:45+0000","dateStarted":"2018-08-30T23:52:44+0000"},{"text":"%md\n\n# Where's our data? \n\nas long as this script keeps running (if it started, it will continue) event hub will keep getting tickets. \n\nThese tickets aren't making their way yet to Spark, and ultimately Hive, and therefore we can't access them from OAAC yet. Let's take care of that in the next lab!","dateUpdated":"2018-08-28T17:09:37+0000","config":{"tableHide":false,"editorSetting":{"language":"markdown","editOnDblClick":"true"},"colWidth":12,"editorMode":"ace/mode/markdown","editorHide":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"HTML","data":"<div class=\"markdown-body\">\n<h1>Where&rsquo;s our data?</h1>\n<p>as long as this script keeps running (if it started, it will continue) event hub will keep getting tickets. </p>\n<p>These tickets aren&rsquo;t making their way yet to Spark, and ultimately Hive, and therefore we can&rsquo;t access them from OAAC yet. Let&rsquo;s take care of that in the next lab!</p>\n</div>"}]},"apps":[],"jobName":"paragraph_1535476177499_818451726","id":"20180802-015906_274295603","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:311"},{"text":"%md\n","dateUpdated":"2018-08-28T17:09:37+0000","config":{"colWidth":12,"editorMode":"ace/mode/markdown","results":{},"enabled":true,"editorSetting":{"language":"markdown","editOnDblClick":"true"}},"settings":{"params":{},"forms":{}},"apps":[],"jobName":"paragraph_1535476177500_816527982","id":"20180802-193629_1025019567","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:312"}],"name":"Stream_Producer","id":"2DPADDDT6","angularObjects":{"2DJZYY4TH:shared_process":[],"2DM1XAWRD:shared_process":[],"2DMHEN2CM:shared_process":[],"2DMRW8G1U:shared_process":[],"2DHYW66NX:shared_process":[],"2DMP8TPE4:shared_process":[],"2DKT96QMW:shared_process":[],"2C4U48MY3_spark2:shared_process":[]},"config":{"looknfeel":"default","personalizedMode":"false"},"info":{}}
{"paragraphs":[{"text":"%md\n\n# Spark Streaming \n\nOnce we've set up our kafka cluster and have a producer pumping data into our topic we can see the data as it streams in!\n\n### At a high level here's what the next few cells will do\n1. load a dependency from maven central (spark.streaming.kafka library)\n2. Use Zeppelin's Angular bindings to put in our connectiondescriptor and topic \n - OEHCS_ConnectionDescriptor should be the public IP and port of your kafka node\n - OEHCS_Topic is the name of the topic which contains our tweet stream\n3. create the two tables necessary to store our data (if they don't already exist)\n4. Run the functions necessary to parse and store the data\n5. Start and watch the streaming! \n6. stop ALL the streaming (you don't want streams hanging around taking up your compute power!)\n7. Explore our data using SQL and Zeppelins native data visualzation tools \n \n\n","user":"anonymous","dateUpdated":"2018-08-28T18:55:02+0000","config":{"tableHide":false,"editorSetting":{"language":"markdown","editOnDblClick":"true"},"colWidth":12,"editorMode":"ace/mode/markdown","editorHide":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"HTML","data":"<div class=\"markdown-body\">\n<h1>Spark Streaming</h1>\n<p>Once we&rsquo;ve set up our kafka cluster and have a producer pumping data into our topic we can see the data as it streams in!</p>\n<h3>At a high level here&rsquo;s what the next few cells will do</h3>\n<ol>\n <li>load a dependency from maven central (spark.streaming.kafka library)</li>\n <li>Use Zeppelin&rsquo;s Angular bindings to put in our connectiondescriptor and topic\n <ul>\n <li>OEHCS_ConnectionDescriptor should be the public IP and port of your kafka node</li>\n <li>OEHCS_Topic is the name of the topic which contains our tweet stream</li>\n </ul>\n </li>\n <li>create the two tables necessary to store our data (if they don&rsquo;t already exist)</li>\n <li>Run the functions necessary to parse and store the data</li>\n <li>Start and watch the streaming!</li>\n <li>stop ALL the streaming (you don&rsquo;t want streams hanging around taking up your compute power!)</li>\n <li>Explore our data using SQL and Zeppelins native data visualzation tools</li>\n</ol>\n</div>"}]},"apps":[],"jobName":"paragraph_1535476177624_867314837","id":"20180226-163632_374321565","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-28T18:55:02+0000","dateFinished":"2018-08-28T18:55:02+0000","status":"FINISHED","progressUpdateIntervalMs":500,"focus":true,"$$hashKey":"object:296"},{"text":"%dep\n\nz.load(\"org.apache.spark:spark-streaming-kafka-0-8_2.11:2.1.0\")","user":"anonymous","dateUpdated":"2018-08-30T23:57:11+0000","config":{"tableHide":false,"editorSetting":{"language":"scala","editOnDblClick":"false"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"res0: org.apache.zeppelin.dep.Dependency = org.apache.zeppelin.dep.Dependency@30d8903f\n"}]},"apps":[],"jobName":"paragraph_1535476177625_866930088","id":"20180724-233826_1397162694","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-30T23:57:11+0000","dateFinished":"2018-08-30T23:57:18+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:297"},{"title":"Use Angular to bind Event Hub Connector","text":"%spark2\nz.angularBind(\"BIND_ObjectStorage_Container\", \"\")\nz.angularBind(\"BIND_OEHCS_ConnectionDescriptor\", z.input(\"OEHCS_ConnectionDescriptor\",\"129.150.212.124:6667\"))\nz.angularBind(\"Tweets_Topic\", z.input(\"Tweets_Topic\",\"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\"))\nz.angularBind(\"Survey_Topic\", z.input(\"Survey_Topic\",\"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere\"))\n\n//save these for pyspark\nz.put(\"Tweets_Topic\", z.angular(\"Tweets_Topic\"))\nz.put(\"Survey_Topic\", z.angular(\"Survey_Topic\"))\nz.put(\"BIND_OEHCS_ConnectionDescriptor\", z.angular(\"BIND_OEHCS_ConnectionDescriptor\"))\n\n//save these for shell\nscala.tools.nsc.io.File(\"/var/lib/zeppelin/oehcs.sh\").writeAll(\n \"export ObjectStorage_Container=\\\"\"+z.angular(\"BIND_ObjectStorage_Container\")+\"\\\"\\n\" +\n \"export OEHCS_ConnectionDescriptor=\\\"\"+z.angular(\"BIND_OEHCS_ConnectionDescriptor\")+\"\\\"\\n\" +\n \"export Tweets_Topic=\\\"\"+z.angular(\"Tweets_Topic\")+\"\\\"\\n\" +\n \"export Survey_Topic=\\\"\"+z.angular(\"Survey_Topic\")+\"\\\"\\n\"\n)\nprintln(\"done\")\n","user":"anonymous","dateUpdated":"2018-08-30T23:58:23+0000","config":{"tableHide":false,"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":false,"title":true,"results":{},"enabled":true},"settings":{"params":{"OEHCS_Topic":"idcs-c6319aeb031a417c97ac0f048627b112-conga","OEHCS_ConnectionDescriptor":"129.144.154.83:6667","Survey_Topic":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","Tweets_Topic":"idcs-c6319aeb031a417c97ac0f048627b112-conga"},"forms":{"OEHCS_ConnectionDescriptor":{"name":"OEHCS_ConnectionDescriptor","displayName":"OEHCS_ConnectionDescriptor","type":"input","defaultValue":"129.150.212.124:6667","hidden":false,"$$hashKey":"object:2098"},"Tweets_Topic":{"name":"Tweets_Topic","displayName":"Tweets_Topic","type":"input","defaultValue":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","hidden":false,"$$hashKey":"object:2100"},"Survey_Topic":{"name":"Survey_Topic","displayName":"Survey_Topic","type":"input","defaultValue":"idcs-363b4236183e42f68a92d1c5ad79728e-lumiere","hidden":false,"$$hashKey":"object:2099"}}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"done\n"}]},"apps":[],"jobName":"paragraph_1535476177626_868084335","id":"20180226-163652_201978658","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-30T23:58:23+0000","dateFinished":"2018-08-30T23:58:24+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:298"},{"text":"%md\n\n# Get Raw Tweets from Kafka ","dateUpdated":"2018-08-28T17:09:37+0000","config":{"tableHide":false,"editorSetting":{"language":"markdown","editOnDblClick":"true"},"colWidth":12,"editorMode":"ace/mode/markdown","editorHide":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"HTML","data":"<div class=\"markdown-body\">\n<h1>Get Raw Tweets from Kafka</h1>\n</div>"}]},"apps":[],"jobName":"paragraph_1535476177626_868084335","id":"20180226-163736_1435072909","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:299"},{"title":"Spark Streaming Code","text":"%spark\nimport org.apache.spark.sql.types\nimport spark.implicits._\n\n\n case class Tweet(\n date: String,\n text: String, \n city: String \n )\n \n case class Survey(\n date: String,\n rating: String,\n city: String \n )\n\n","user":"anonymous","dateUpdated":"2018-08-30T23:57:26+0000","config":{"tableHide":false,"editorSetting":{"language":"scala","editOnDblClick":false},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":false,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"\nimport org.apache.spark.sql.types\n\nimport spark.implicits._\n\ndefined class Tweet\n\ndefined class Survey\n"}]},"apps":[],"jobName":"paragraph_1535476177627_867699586","id":"20180313-151849_1815330875","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-30T23:57:26+0000","dateFinished":"2018-08-30T23:57:45+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:302"},{"title":"Consume Streaming Data","text":"%spark\n{\nimport _root_.kafka.serializer.StringDecoder //http://stackoverflow.com/questions/36397688/sbt-cannot-import-kafka-encoder-decoder-classes\nimport org.apache.spark.streaming._\nimport org.apache.spark.streaming.kafka._\n\n\n println(\"Creating new Streaming Context\")\n val ssc = new StreamingContext(sc, Seconds(5))\n \n val topic = z.angular(\"Tweets_Topic\").toString\n println(\"topic:\"+topic)\n val topicsSet = topic.split(\",\").toSet\n \n val brokers=z.angular(\"BIND_OEHCS_ConnectionDescriptor\").toString\n println(\"brokers:\"+brokers)\n val kafkaParams = Map[String, String](\"metadata.broker.list\" -> brokers)\n \n println(\"Creating Kafka DStream\")\n //https://spark.apache.org/docs/1.6.1/streaming-kafka-integration.html\n val messages = KafkaUtils.createDirectStream[String, String, StringDecoder, StringDecoder](ssc, kafkaParams, topicsSet)\n\n\n println(\"Setting up operations on DStream\") \n //for debugging, you can print the full contents of the first 10 rows of each batch of messages by uncommenting the following\n// messages.print()\n \n messages.foreachRDD(rdd => {\n var df=sqlContext.read.json(rdd.map(x => x._2))\n // println(df.describe().show())\n // println(df.printSchema())\n\n try {\n val ds = df.as[Tweet]\n ds.show()\n } catch {\n case e: Exception =>\n println(e)\n }\n })\n \n println(\"Starting Streaming Context\")\n ssc.start()\n\n println(\"Will now sleep for a few minutes, before stopping the StreamingContext. At this point, you should start the producer.\")\n Thread.sleep(90) //now sleep for 1.5 minutes. Parameter is milliseconds\n\n //stop any active streamingcontexts. Parameters are boolean stopSparkContext, boolean stopGracefully\n println(\"Stopping Active StreamingContext\")\n StreamingContext.getActive().map(_.stop(false,true))\n println(\"done\")\n}","user":"anonymous","dateUpdated":"2018-08-30T23:58:28+0000","config":{"tableHide":false,"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":false,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"Creating new Streaming Context\ntopic:idcs-c6319aeb031a417c97ac0f048627b112-conga\nbrokers:129.144.154.83:6667\nCreating Kafka DStream\nSetting up operations on DStream\nStarting Streaming Context\nWill now sleep for a few minutes, before stopping the StreamingContext. At this point, you should start the producer.\nStopping Active StreamingContext\norg.apache.spark.sql.AnalysisException: cannot resolve '`date`' given input columns: [];\n+-----------+----------+--------------------+\n| city| date| text|\n+-----------+----------+--------------------+\n|Los Angeles|08/04/2018|rather sharply; �...|\n| Miami|08/04/2018|gave herself very...|\n| Dallas|08/04/2018|and sometimes she...|\n| Miami|08/04/2018|her eyes; and onc...|\n|Los Angeles|08/04/2018|cheated herself i...|\n+-----------+----------+--------------------+\n\n+-------------+----------+--------------------+\n| city| date| text|\n+-------------+----------+--------------------+\n| Los Angeles|08/04/2018|���But it��s no u...|\n|San Francisco|08/04/2018|for this curious ...|\n| Chicago|08/04/2018|Why, there��s har...|\n| Miami|08/04/2018|Soon her eye fell...|\n| Nashville|08/04/2018|she opened it, an...|\n+-------------+----------+--------------------+\n\ndone\n"}]},"apps":[],"jobName":"paragraph_1535476177628_865775841","id":"20180226-163710_430219123","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-30T23:58:28+0000","dateFinished":"2018-08-30T23:58:41+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:303"},{"title":"Stop all Spark Streaming","text":"%spark\n{\n import org.apache.spark.streaming._\n println(\"Stopping any active StreamingContext. May take a minute.\")\n StreamingContext.getActive().map(_.stop(false,true))\n println(\"done\")\n}","dateUpdated":"2018-08-28T17:09:37+0000","config":{"tableHide":false,"editorSetting":{"language":"scala"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":false,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"Stopping any active StreamingContext. May take a minute.\ndone\n"}]},"apps":[],"jobName":"paragraph_1535476177628_865775841","id":"20180226-163841_1704805750","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:304"},{"text":"%md \n\n## Let's inspect our data\n\nnot only can we use SQL, the most popular query language, to inspect our data in table form but zeppelin notebooks provide visualizations to help us look for patterns. \n","dateUpdated":"2018-08-28T17:09:37+0000","config":{"tableHide":false,"editorSetting":{"language":"markdown","editOnDblClick":"true"},"colWidth":12,"editorMode":"ace/mode/markdown","editorHide":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"HTML","data":"<div class=\"markdown-body\">\n<h2>Let&rsquo;s inspect our data</h2>\n<p>not only can we use SQL, the most popular query language, to inspect our data in table form but zeppelin notebooks provide visualizations to help us look for patterns.</p>\n</div>"}]},"apps":[],"jobName":"paragraph_1535476177628_865775841","id":"20180226-165024_786375792","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:305"},{"text":"%sql\n\nselect * from tweets","user":"anonymous","dateUpdated":"2018-08-30T23:58:50+0000","config":{"tableHide":false,"editorSetting":{"language":"sql","editOnDblClick":false},"colWidth":12,"editorMode":"ace/mode/sql","editorHide":false,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TABLE","data":"tweet_date\ttext\tcity\n04/04/2018\tan agony of terror. ���Oh, there goes his PRECIOUS nose��; as an unusually\tSan Francisco\n04/04/2018\tlarge saucepan flew close by it, and very nearly carried it off.\tLos Angeles\n04/04/2018\t���If everybody minded their own business,�� the Duchess said in a hoarse\tChicago\n04/04/2018\tgrowl, ���the world would go round a deal faster than it does.��\tNew York\n04/04/2018\t���Which would NOT be an advantage,�� said Alice, who felt very glad to get\tLos Angeles\n04/04/2018\tthought Alice, ���they��re sure to kill it in a day or two: wouldn��t it be\tChicago\n24/04/2018\t���I can��t go no lower,�� said the Hatter: ���I��m on the floor, as it is.��\tLos Angeles\n24/04/2018\t���Come, that finished the guinea-pigs!�� thought Alice. ���Now we shall get\tNashville\n24/04/2018\ton better.��\tLos Angeles\n24/04/2018\tQueen, who was reading the list of singers.\tLos Angeles\n24/04/2018\t���You may go,�� said the King, and the Hatter hurriedly left the court,\tKansas\n24/04/2018\twithout even waiting to put his shoes on.\tChicago\n24/04/2018\t���--and just take his head off outside,�� the Queen added to one of the\tMiami\n24/04/2018\ther hand, and Alice guessed who it was, even before she got into the\tNashville\n24/04/2018\t���Shan��t,�� said the cook.\tNew York\n24/04/2018\t���Well, if I must, I must,�� the King said, with a melancholy air, and,\tSan Francisco\n24/04/2018\tnearly out of sight, he said in a deep voice, ���What are tarts made of?��\tChicago\n24/04/2018\t���Collar that Dormouse,�� the Queen shrieked out. ���Behead that Dormouse!\tKansas\n24/04/2018\tTurn that Dormouse out of court! Suppress him! Pinch him! Off with his\tSan Francisco\n24/04/2018\twhiskers!��\tWashington\n24/04/2018\tFor some minutes the whole court was in confusion, getting the Dormouse\tSan Francisco\n24/04/2018\tturned out, and, by the time they had settled down again, the cook had\tChicago\n24/04/2018\t���Never mind!�� said the King, with an air of great relief. ���Call the next\tSan Francisco\n24/04/2018\twitness.�� And he added in an undertone to the Queen, ���Really, my dear,\tLos Angeles\n24/04/2018\tAlice watched the White Rabbit as he fumbled over the list, feeling very\tWashington\n24/04/2018\tcurious to see what the next witness would be like, ���--for they haven��t\tSan Francisco\n04/04/2018\tsee what was the matter with it. There could be no doubt that it had\tKansas\n04/04/2018\ta VERY turn-up nose, much more like a snout than a real nose; also its\tChicago\n04/04/2018\teyes were getting extremely small for a baby: altogether Alice did not\tMiami\n24/04/2018\ta hurry that she tipped over the jury-box with the edge of her skirt,\tKansas\n24/04/2018\tupsetting all the jurymen on to the heads of the crowd below, and there\tNew York\n24/04/2018\tthey lay sprawling about, reminding her very much of a globe of goldfish\tSeattle\n24/04/2018\tthe goldfish kept running in her head, and she had a vague sort of idea\tDallas\n24/04/2018\tthey would die.\tChicago\n24/04/2018\tthe Lizard in head downwards, and the poor little thing was waving its\tSeattle\n24/04/2018\ttail about in a melancholy way, being quite unable to move. She soon got\tKansas\n24/04/2018\tit out again, and put it right; ���not that it signifies much,�� she said\tDallas\n24/04/2018\t���What do you know about this business?�� the King said to Alice.\tDallas\n24/04/2018\t���Nothing,�� said Alice.\tMiami\n24/04/2018\t���Nothing WHATEVER?�� persisted the King.\tChicago\n24/04/2018\t���Nothing whatever,�� said Alice.\tChicago\n24/04/2018\t���UNimportant, of course, I meant,�� the King hastily said, and went on\tLos Angeles\n24/04/2018\twhich word sounded best.\tChicago\n24/04/2018\t���but it doesn��t matter a bit,�� she thought to herself.\tKansas\n24/04/2018\this note-book, cackled out ���Silence!�� and read out from his book, ���Rule\tLos Angeles\n24/04/2018\t���You are,�� said the King.\tNashville\n24/04/2018\t���Well, I shan��t go, at any rate,�� said Alice: ���besides, that��s not a\tMiami\n24/04/2018\t���Then it ought to be Number One,�� said Alice.\tChicago\n04/04/2018\tlike the look of the thing at all. ���But perhaps it was only sobbing,��\tNew York\n04/04/2018\tsaid Alice, seriously, ���I��ll have nothing more to do with you. Mind\tNashville\n24/04/2018\tverdict,�� he said to the jury, in a low, trembling voice.\tSeattle\n24/04/2018\tRabbit, jumping up in a great hurry; ���this paper has just been picked\tSeattle\n24/04/2018\t���What��s in it?�� said the Queen.\tNashville\n24/04/2018\t���I haven��t opened it yet,�� said the White Rabbit, ���but it seems to be a\tMiami\n24/04/2018\t���It must have been that,�� said the King, ���unless it was written to\tSan Francisco\n24/04/2018\tnobody, which isn��t usual, you know.��\tLos Angeles\n24/04/2018\t���Who is it directed to?�� said one of the jurymen.\tChicago\n24/04/2018\t���It isn��t directed at all,�� said the White Rabbit; ���in fact, there��s\tSeattle\n24/04/2018\tnothing written on the OUTSIDE.�� He unfolded the paper as he spoke, and\tMiami\n24/04/2018\t���No, they��re not,�� said the White Rabbit, ���and that��s the queerest thing\tSan Francisco\n24/04/2018\tabout it.�� (The jury all looked puzzled.)\tSeattle\n24/04/2018\t���He must have imitated somebody else��s hand,�� said the King. (The jury\tNashville\n24/04/2018\tall brightened up again.)\tSeattle\n24/04/2018\tcan��t prove I did: there��s no name signed at the end.��\tNashville\n24/04/2018\tname like an honest man.��\tWashington\n24/04/2018\tThere was a general clapping of hands at this: it was the first really\tWashington\n24/04/2018\tclever thing the King had said that day.\tMiami\n24/04/2018\t���That PROVES his guilt,�� said the Queen.\tDallas\n24/04/2018\tThe White Rabbit put on his spectacles. ���Where shall I begin, please\tNashville\n24/04/2018\tyour Majesty?�� he asked.\tLos Angeles\n24/04/2018\tThese were the verses the White Rabbit read:--\tLos Angeles\n24/04/2018\t���They told me you had been to her,\tMiami\n24/04/2018\tAnd mentioned me to him:\tSan Francisco\n24/04/2018\tHe sent them word I had not gone\tChicago\n24/04/2018\t(We know it to be true):\tSan Francisco\n24/04/2018\tYou gave us three or more;\tMiami\n24/04/2018\tIf I or she should chance to be\tChicago\n24/04/2018\tInvolved in this affair,\tMiami\n24/04/2018\tHe trusts to you to set them free,\tSeattle\n04/04/2018\tnow!�� The poor little thing sobbed again (or grunted, it was impossible\tMiami\n24/04/2018\tExactly as we were.\tDallas\n24/04/2018\tMy notion was that you had been\tSan Francisco\n24/04/2018\tAn obstacle that came between\tDallas\n24/04/2018\tHim, and ourselves, and it.\tKansas\n24/04/2018\tFor this must ever be\tLos Angeles\n24/04/2018\tBetween yourself and me.��\tSan Francisco\n25/04/2018\tKing, rubbing his hands; ���so now let the jury--��\tMiami\n25/04/2018\t���If any one of them can explain it,�� said Alice, (she had grown so large\tKansas\n25/04/2018\tin the last few minutes that she wasn��t a bit afraid of interrupting\tNew York\n25/04/2018\thim,) ���I��ll give him sixpence. _I_ don��t believe there��s an atom of\tChicago\n25/04/2018\tmeaning in it.��\tNashville\n25/04/2018\tatom of meaning in it,�� but none of them attempted to explain the paper.\tLos Angeles\n25/04/2018\t���If there��s no meaning in it,�� said the King, ���that saves a world of\tSan Francisco\n25/04/2018\twith one eye; ���I seem to see some meaning in them, after all. ���--SAID\tKansas\n25/04/2018\tI COULD NOT SWIM--�� you can��t swim, can you?�� he added, turning to the\tKansas\n25/04/2018\tThe Knave shook his head sadly. ���Do I look like it?�� he said. (Which he\tKansas\n25/04/2018\tcertainly did NOT, being made entirely of cardboard.)\tSan Francisco\n25/04/2018\t���All right, so far,�� said the King, and he went on muttering over\tNashville\n25/04/2018\tthe verses to himself: ������WE KNOW IT TO BE TRUE--�� that��s the jury, of\tMiami\n25/04/2018\t���But, it goes on ���THEY ALL RETURNED FROM HIM TO YOU,���� said Alice.\tSan Francisco\n25/04/2018\ton the table. ���Nothing can be clearer than THAT. Then again--���BEFORE SHE\tMiami\n25/04/2018\tHAD THIS FIT--�� you never had fits, my dear, I think?�� he said to the\tWashington\n25/04/2018\tQueen.\tChicago\n25/04/2018\tas she spoke. (The unfortunate little Bill had left off writing on his\tMiami\n25/04/2018\tslate with one finger, as he found it made no mark; but he now hastily\tSan Francisco\n25/04/2018\tit lasted.)\tChicago\n01/04/2018\tRabbit returning, splendidly dressed, with a pair of white kid gloves in\tDallas\n01/04/2018\tOh! won��t she be savage if I��ve kept her waiting!�� Alice felt so\tLos Angeles\n01/04/2018\tcame near her, she began, in a low, timid voice, ���If you please, sir--��\tSan Francisco\n01/04/2018\tThe Rabbit started violently, dropped the white kid gloves and the fan,\tDallas\n04/04/2018\tbe NO mistake about it: it was neither more nor less than a pig, and she\tChicago\n04/04/2018\tSo she set the little creature down, and felt quite relieved to see\tKansas\n01/04/2018\tand skurried away into the darkness as hard as he could go.\tSeattle\n01/04/2018\tkept fanning herself all the time she went on talking: ���Dear, dear! How\tWashington\n01/04/2018\tin the world am I? Ah, THAT��S the great puzzle!�� And she began thinking\tNew York\n01/04/2018\tover all the children she knew that were of the same age as herself, to\tSan Francisco\n01/04/2018\t���I��m sure I��m not Ada,�� she said, ���for her hair goes in such long\tSeattle\n01/04/2018\tbe Mabel, for I know all sorts of things, and she, oh! she knows such a\tMiami\n01/04/2018\tsee: four times five is twelve, and four times six is thirteen, and\tNashville\n01/04/2018\tfour times seven is--oh dear! I shall never get to twenty at that rate!\tKansas\n01/04/2018\tHowever, the Multiplication Table doesn��t signify: let��s try Geography.\tMiami\n01/04/2018\tLondon is the capital of Paris, and Paris is the capital of Rome, and\tWashington\n01/04/2018\thands on her lap as if she were saying lessons, and began to repeat it,\tSan Francisco\n01/04/2018\tsame as they used to do:--\tWashington\n01/04/2018\t���How doth the little crocodile\tNew York\n01/04/2018\tWith gently smiling jaws!��\tMiami\n01/04/2018\t���I��m sure those are not the right words,�� said poor Alice, and her eyes\tSeattle\n01/04/2018\tfilled with tears again as she went on, ���I must be Mabel after all, and\tMiami\n01/04/2018\tmade up my mind about it; if I��m Mabel, I��ll stay down here! It��ll be no\tWashington\n01/04/2018\tshall only look up and say ���Who am I then? Tell me that first, and then,\tWashington\n01/04/2018\ttill I��m somebody else��--but, oh dear!�� cried Alice, with a sudden burst\tDallas\n01/04/2018\tAs she said this she looked down at her hands, and was surprised to see\tMiami\n01/04/2018\tshe was talking. ���How CAN I have done that?�� she thought. ���I must\tSeattle\n01/04/2018\therself by it, and found that, as nearly as she could guess, she was now\tSeattle\n01/04/2018\tabout two feet high, and was going on shrinking rapidly: she soon found\tLos Angeles\n04/04/2018\trather a handsome pig, I think.�� And she began thinking over other\tWashington\n04/04/2018\tto herself, ���if one only knew the right way to change them--�� when she\tNashville\n04/04/2018\twas a little startled by seeing the Cheshire Cat sitting on a bough of a\tSan Francisco\n01/04/2018\tit hastily, just in time to avoid shrinking away altogether.\tLos Angeles\n01/04/2018\tsudden change, but very glad to find herself still in existence; ���and\tMiami\n01/04/2018\tlying on the glass table as before, ���and things are worse than ever,��\tNew York\n01/04/2018\tAnd I declare it��s too bad, that it is!��\tChicago\n01/04/2018\tAs she said these words her foot slipped, and in another moment, splash!\tChicago\n01/04/2018\tshe was up to her chin in salt water. Her first idea was that she\tDallas\n01/04/2018\trailway,�� she said to herself. (Alice had been to the seaside once in\tDallas\n01/04/2018\tto on the English coast you find a number of bathing machines in the\tLos Angeles\n01/04/2018\tof lodging houses, and behind them a railway station.) However, she soon\tWashington\n01/04/2018\tto find her way out. ���I shall be punished for it now, I suppose, by\tSan Francisco\n01/04/2018\tbeing drowned in my own tears! That WILL be a queer thing, to be sure!\tNashville\n01/04/2018\tJust then she heard something splashing about in the pool a little way\tWashington\n01/04/2018\tit must be a walrus or hippopotamus, but then she remembered how small\tNashville\n01/04/2018\tshe was now, and she soon made out that it was only a mouse that had\tLos Angeles\n01/04/2018\tslipped in like herself.\tNew York\n01/04/2018\tEverything is so out-of-the-way down here, that I should think very\tNashville\n01/04/2018\tlikely it can talk: at any rate, there��s no harm in trying.�� So she\tLos Angeles\n01/04/2018\tof swimming about here, O Mouse!�� (Alice thought this must be the right\tDallas\n01/04/2018\tshe remembered having seen in her brother��s Latin Grammar, ���A mouse--of\tNashville\n01/04/2018\ta mouse--to a mouse--a mouse--O mouse!��) The Mouse looked at her rather\tLos Angeles\n01/04/2018\tinquisitively, and seemed to her to wink with one of its little eyes,\tDallas\n02/04/2018\t���Perhaps it doesn��t understand English,�� thought Alice; ���I daresay it��s\tKansas\n02/04/2018\tanything had happened.) So she began again: ���Ou est ma chatte?�� which\tNew York\n02/04/2018\t���Oh, I beg your pardon!�� cried Alice hastily, afraid that she had hurt\tLos Angeles\n02/04/2018\tthe poor animal��s feelings. ���I quite forgot you didn��t like cats.��\tDallas\n02/04/2018\t���Not like cats!�� cried the Mouse, in a shrill, passionate voice. ���Would\tDallas\n02/04/2018\ttake a fancy to cats if you could only see her. She is such a dear quiet\tKansas\n04/04/2018\ttree a few yards off.\tSeattle\n04/04/2018\tThe Cat only grinned when it saw Alice. It looked good-natured, she\tLos Angeles\n04/04/2018\tfelt that it ought to be treated with respect.\tNashville\n04/04/2018\t���Cheshire Puss,�� she began, rather timidly, as she did not at all know\tWashington\n02/04/2018\tsuch a capital one for catching mice--oh, I beg your pardon!�� cried\tNashville\n02/04/2018\tAlice again, for this time the Mouse was bristling all over, and she\tLos Angeles\n02/04/2018\tfelt certain it must be really offended. ���We won��t talk about her any\tChicago\n02/04/2018\tmore if you��d rather not.��\tSan Francisco\n02/04/2018\t���I won��t indeed!�� said Alice, in a great hurry to change the subject of\tSan Francisco\n02/04/2018\tknow, with oh, such long curly brown hair! And it��ll fetch things when\tSan Francisco\n02/04/2018\tyou throw them, and it��ll sit up and beg for its dinner, and all sorts\tSan Francisco\n02/04/2018\tsays it kills all the rats and--oh dear!�� cried Alice in a sorrowful\tLos Angeles\n02/04/2018\ttone, ���I��m afraid I��ve offended it again!�� For the Mouse was swimming\tNashville\n02/04/2018\taway from her as hard as it could go, and making quite a commotion in\tDallas\n02/04/2018\tSo she called softly after it, ���Mouse dear! Do come back again, and we\tDallas\n02/04/2018\tMouse heard this, it turned round and swam slowly back to her: its\tChicago\n02/04/2018\tface was quite pale (with passion, Alice thought), and it said in a low\tNashville\n02/04/2018\ttrembling voice, ���Let us get to the shore, and then I��ll tell you my\tNew York\n02/04/2018\tbirds and animals that had fallen into it: there were a Duck and a Dodo,\tNew York\n02/04/2018\ta Lory and an Eaglet, and several other curious creatures. Alice led the\tKansas\n02/04/2018\tCHAPTER III. A Caucus-Race and a Long Tale\tNew York\n02/04/2018\tThey were indeed a queer-looking party that assembled on the bank--the\tNew York\n02/04/2018\tbirds with draggled feathers, the animals with their fur clinging close\tChicago\n02/04/2018\tto them, and all dripping wet, cross, and uncomfortable.\tChicago\n02/04/2018\tconsultation about this, and after a few minutes it seemed quite natural\tKansas\n02/04/2018\tyou, and must know better��; and this Alice would not allow without\tNew York\n02/04/2018\tknowing how old it was, and, as the Lory positively refused to tell its\tNashville\n02/04/2018\tage, there was no more to be said.\tWashington\n02/04/2018\tcalled out, ���Sit down, all of you, and listen to me! I��LL soon make you\tSan Francisco\n02/04/2018\tin the middle. Alice kept her eyes anxiously fixed on it, for she felt\tDallas\n02/04/2018\tsure she would catch a bad cold if she did not get dry very soon.\tLos Angeles\n04/04/2018\ttell me, please, which way I ought to go from here?��\tNashville\n04/04/2018\t���That depends a good deal on where you want to get to,�� said the Cat.\tSeattle\n04/04/2018\t���I don��t much care where--�� said Alice.\tKansas\n02/04/2018\t���Ahem!�� said the Mouse with an important air, ���are you all ready? This\tSeattle\n02/04/2018\tis the driest thing I know. Silence all round, if you please! ���William\tSeattle\n02/04/2018\taccustomed to usurpation and conquest. Edwin and Morcar, the earls of\tSeattle\n02/04/2018\tMercia and Northumbria--�����\tWashington\n02/04/2018\t���Ugh!�� said the Lory, with a shiver.\tSeattle\n02/04/2018\tyou speak?��\tDallas\n02/04/2018\tthe earls of Mercia and Northumbria, declared for him: and even Stigand,\tNashville\n02/04/2018\tthe patriotic archbishop of Canterbury, found it advisable--�����\tLos Angeles\n02/04/2018\t���Found IT,�� the Mouse replied rather crossly: ���of course you know what\tDallas\n02/04/2018\t���I know what ���it�� means well enough, when I find a thing,�� said the\tWashington\n02/04/2018\tDuck: ���it��s generally a frog or a worm. The question is, what did the\tSan Francisco\n02/04/2018\tThe Mouse did not notice this question, but hurriedly went on, ������--found\tNew York\n02/04/2018\tNormans--�� How are you getting on now, my dear?�� it continued, turning\tNew York\n02/04/2018\t���As wet as ever,�� said Alice in a melancholy tone: ���it doesn��t seem to\tMiami\n02/04/2018\t���In that case,�� said the Dodo solemnly, rising to its feet, ���I move\tMiami\n02/04/2018\tremedies--��\tKansas\n02/04/2018\t���Speak English!�� said the Eaglet. ���I don��t know the meaning of half\tChicago\n02/04/2018\ttittered audibly.\tSan Francisco\n02/04/2018\t���What I was going to say,�� said the Dodo in an offended tone, ���was, that\tLos Angeles\n02/04/2018\tthe best thing to get us dry would be a Caucus-race.��\tKansas\n02/04/2018\t���What IS a Caucus-race?�� said Alice; not that she wanted much to know,\tWashington\n02/04/2018\tbut the Dodo had paused as if it thought that SOMEBODY ought to speak,\tNashville\n02/04/2018\tFirst it marked out a race-course, in a sort of circle, [���the exact\tMiami\n02/04/2018\tshape doesn��t matter,�� it said,) and then all the party were placed\tNew York\n02/04/2018\tliked, so that it was not easy to know when the race was over. However,\tSan Francisco\n02/04/2018\tround it, panting, and asking, ���But who has won?��\tDallas\n04/04/2018\t���Then it doesn��t matter which way you go,�� said the Cat.\tWashington\n04/04/2018\t���--so long as I get SOMEWHERE,�� Alice added as an explanation.\tKansas\n04/04/2018\t���Oh, you��re sure to do that,�� said the Cat, ���if you only walk long\tNashville\n04/04/2018\tAlice felt that this could not be denied, so she tried another question.\tKansas\n02/04/2018\tand it sat for a long time with one finger pressed upon its forehead\tChicago\n02/04/2018\t���Why, SHE, of course,�� said the Dodo, pointing to Alice with one finger;\tLos Angeles\n02/04/2018\tpocket, and pulled out a box of comfits, (luckily the salt water had\tNew York\n02/04/2018\t���But she must have a prize herself, you know,�� said the Mouse.\tLos Angeles\n02/04/2018\tyour pocket?�� he went on, turning to Alice.\tLos Angeles\n02/04/2018\t���Only a thimble,�� said Alice sadly.\tNew York\n02/04/2018\tpresented the thimble, saying ���We beg your acceptance of this elegant\tNashville\n02/04/2018\tthimble��; and, when it had finished this short speech, they all cheered.\tNashville\n02/04/2018\tAlice thought the whole thing very absurd, but they all looked so grave\tWashington\n02/04/2018\tthat she did not dare to laugh; and, as she could not think of anything\tMiami\n02/04/2018\tto say, she simply bowed, and took the thimble, looking as solemn as she\tSan Francisco\n02/04/2018\tbegged the Mouse to tell them something more.\tWashington\n02/04/2018\t���Please come back and finish your story!�� Alice called after it; and the\tChicago\n02/04/2018\t���What a pity it wouldn��t stay!�� sighed the Lory, as soon as it was quite\tWashington\n02/04/2018\tout of sight; and an old Crab took the opportunity of saying to her\tSan Francisco\n02/04/2018\tdaughter ���Ah, my dear! Let this be a lesson to you never to lose\tMiami\n02/04/2018\tnobody in particular. ���She��d soon fetch it back!��\tLos Angeles\n02/04/2018\tLory.\tDallas\n02/04/2018\tAlice replied eagerly, for she was always ready to talk about her pet:\tWashington\n02/04/2018\t���Dinah��s our cat. And she��s such a capital one for catching mice you\tChicago\n02/04/2018\tcan��t think! And oh, I wish you could see her after the birds! Why,\tMiami\n02/04/2018\tshe��ll eat a little bird as soon as look at it!��\tSeattle\n02/04/2018\tThis speech caused a remarkable sensation among the party. Some of the\tDallas\n02/04/2018\tcarefully, remarking, ���I really must be getting home; the night-air\tMiami\n04/04/2018\t���What sort of people live about here?��\tDallas\n04/04/2018\t���In THAT direction,�� the Cat said, waving its right paw round, ���lives\tNew York\n04/04/2018\ta Hatter: and in THAT direction,�� waving the other paw, ���lives a March\tSeattle\n02/04/2018\tdoesn��t suit my throat!�� and a Canary called out in a trembling voice to\tNashville\n02/04/2018\tOn various pretexts they all moved off, and Alice was soon left alone.\tNashville\n02/04/2018\t���I wish I hadn��t mentioned Dinah!�� she said to herself in a melancholy\tSan Francisco\n02/04/2018\tany more!�� And here poor Alice began to cry again, for she felt very\tKansas\n02/04/2018\tCHAPTER IV. The Rabbit Sends in a Little Bill\tWashington\n02/04/2018\tanxiously about as it went, as if it had lost something; and she heard\tDallas\n02/04/2018\tit muttering to itself ���The Duchess! The Duchess! Oh my dear paws! Oh\tKansas\n02/04/2018\tferrets! Where CAN I have dropped them, I wonder?�� Alice guessed in a\tMiami\n02/04/2018\tand she very good-naturedly began hunting about for them, but they were\tWashington\n02/04/2018\tnowhere to be seen--everything seemed to have changed since her swim in\tSan Francisco\n02/04/2018\tthe pool, and the great hall, with the glass table and the little door,\tNashville\n02/04/2018\thad vanished completely.\tNew York\n02/04/2018\tin the direction it pointed to, without trying to explain the mistake it\tSan Francisco\n02/04/2018\thad made.\tWashington\n02/04/2018\tcame upon a neat little house, on the door of which was a bright brass\tWashington\n02/04/2018\tplate with the name ���W. RABBIT�� engraved upon it. She went in without\tChicago\n02/04/2018\tknocking, and hurried upstairs, in great fear lest she should meet the\tMiami\n02/04/2018\tfan and gloves.\tNashville\n02/04/2018\t���How queer it seems,�� Alice said to herself, ���to be going messages for\tMiami\n02/04/2018\ta rabbit! I suppose Dinah��ll be sending me on messages next!�� And she\tKansas\n02/04/2018\tbegan fancying the sort of thing that would happen: ������Miss Alice! Come\tWashington\n02/04/2018\there directly, and get ready for your walk!�� ���Coming in a minute,\tChicago\n02/04/2018\tthink,�� Alice went on, ���that they��d let Dinah stop in the house if it\tDallas\n02/04/2018\tin the window, and on it (as she had hoped) a fan and two or three pairs\tSan Francisco\n02/04/2018\twith the words ���DRINK ME,�� but nevertheless she uncorked it and put it\tLos Angeles\n02/04/2018\tto her lips. ���I know SOMETHING interesting is sure to happen,�� she said\tLos Angeles\n04/04/2018\twhat work it would make with the day and night! You see the earth takes\tSan Francisco\n04/04/2018\ttwenty-four hours to turn round on its axis--��\tChicago\n04/04/2018\tYou��re mad.��\tNashville\n04/04/2018\tAlice didn��t think that proved it at all; however, she went on ���And how\tKansas\n02/04/2018\tto herself, ���whenever I eat or drink anything; so I��ll just see what\tDallas\n02/04/2018\tthis bottle does. I do hope it��ll make me grow large again, for really\tKansas\n02/04/2018\tIt did so indeed, and much sooner than she had expected: before she had\tSan Francisco\n02/04/2018\tand had to stoop to save her neck from being broken. She hastily put\tChicago\n02/04/2018\tdown the bottle, saying to herself ���That��s quite enough--I hope I shan��t\tKansas\n02/04/2018\tdrunk quite so much!��\tSan Francisco\n02/04/2018\tAlas! it was too late to wish that! She went on growing, and growing,\tNashville\n02/04/2018\twas not even room for this, and she tried the effect of lying down with\tKansas\n02/04/2018\tone elbow against the door, and the other arm curled round her head.\tKansas\n02/04/2018\tStill she went on growing, and, as a last resource, she put one arm out\tMiami\n02/04/2018\tof the window, and one foot up the chimney, and said to herself ���Now I\tSan Francisco\n02/04/2018\tand she grew no larger: still it was very uncomfortable, and, as there\tNew York\n02/04/2018\trabbits. I almost wish I hadn��t gone down that rabbit-hole--and yet--and\tNashville\n02/04/2018\tCAN have happened to me! When I used to read fairy-tales, I fancied that\tDallas\n02/04/2018\t���But then,�� thought Alice, ���shall I NEVER get any older than I am\tNew York\n02/04/2018\tnow? That��ll be a comfort, one way--never to be an old woman--but\tSan Francisco\n02/04/2018\tlessons in here? Why, there��s hardly room for YOU, and no room at all\tKansas\n02/04/2018\tquite a conversation of it altogether; but after a few minutes she heard\tMiami\n02/04/2018\ta voice outside, and stopped to listen.\tWashington\n02/04/2018\t���Mary Ann! Mary Ann!�� said the voice. ���Fetch me my gloves this moment!��\tSeattle\n02/04/2018\tThen came a little pattering of feet on the stairs. Alice knew it was\tSeattle\n02/04/2018\tas the Rabbit, and had no reason to be afraid of it.\tChicago\n02/04/2018\tthe door opened inwards, and Alice��s elbow was pressed hard against it,\tNew York\n02/04/2018\tthat attempt proved a failure. Alice heard it say to itself ���Then I��ll\tNashville\n02/04/2018\t���THAT you won��t�� thought Alice, and, after waiting till she fancied\tWashington\n04/04/2018\t���To begin with,�� said the Cat, ���a dog��s not mad. You grant that?��\tSan Francisco\n04/04/2018\t���I suppose so,�� said Alice.\tSan Francisco\n04/04/2018\tand wags its tail when it��s pleased. Now I growl when I��m pleased, and\tMiami\n02/04/2018\tbut she heard a little shriek and a fall, and a crash of broken glass,\tSeattle\n02/04/2018\thelp me out of THIS!�� (Sounds of more broken glass.)\tMiami\n02/04/2018\t���Now tell me, Pat, what��s that in the window?��\tChicago\n02/04/2018\t���Sure, it��s an arm, yer honour!�� (He pronounced it ���arrum.��)\tLos Angeles\n02/04/2018\thand again, and made another snatch in the air. This time there were\tKansas\n02/04/2018\tnext! As for pulling me out of the window, I only wish they COULD! I��m\tSan Francisco\n02/04/2018\trumbling of little cartwheels, and the sound of a good many voices\tLos Angeles\n02/04/2018\tall talking together: she made out the words: ���Where��s the other\tLos Angeles\n02/04/2018\tladder?--Why, I hadn��t to bring but one; Bill��s got the other--Bill!\tMiami\n03/04/2018\ttogether first--they don��t reach half high enough yet--Oh! they��ll\tSeattle\n03/04/2018\tdo well enough; don��t be particular--Here, Bill! catch hold of this\tSan Francisco\n03/04/2018\trope--Will the roof bear?--Mind that loose slate--Oh, it��s coming\tSan Francisco\n03/04/2018\tdown! Heads below!�� (a loud crash)--���Now, who did that?--It was Bill, I\tChicago\n03/04/2018\t���Oh! So Bill��s got to come down the chimney, has he?�� said Alice to\tMiami\n03/04/2018\tShe drew her foot as far down the chimney as she could, and waited\tWashington\n03/04/2018\ttill she heard a little animal (she couldn��t guess of what sort it was)\tNew York\n03/04/2018\tsee what would happen next.\tMiami\n03/04/2018\tThe first thing she heard was a general chorus of ���There goes Bill!��\tNashville\n04/04/2018\twag my tail when I��m angry. Therefore I��m mad.��\tSeattle\n04/04/2018\t���I call it purring, not growling,�� said Alice.\tNew York\n04/04/2018\t���Call it what you like,�� said the Cat. ���Do you play croquet with the\tLos Angeles\n03/04/2018\t���We must burn the house down!�� said the Rabbit��s voice; and Alice called\tLos Angeles\n03/04/2018\tThere was a dead silence instantly, and Alice thought to herself, ���I\tWashington\n03/04/2018\twonder what they WILL do next! If they had any sense, they��d take the\tSeattle\n03/04/2018\troof off.�� After a minute or two, they began moving about again, and\tChicago\n03/04/2018\tAlice heard the Rabbit say, ���A barrowful will do, to begin with.��\tSan Francisco\n03/04/2018\tfor the next moment a shower of little pebbles came rattling in at the\tDallas\n03/04/2018\twindow, and some of them hit her in the face. ���I��ll put a stop to this,��\tChicago\n03/04/2018\twhich produced another dead silence.\tWashington\n03/04/2018\tAlice noticed with some surprise that the pebbles were all turning into\tNew York\n03/04/2018\thead. ���If I eat one of these cakes,�� she thought, ���it��s sure to make\tKansas\n03/04/2018\tSOME change in my size; and as it can��t possibly make me larger, it must\tSan Francisco\n03/04/2018\tanimals and birds waiting outside. The poor little Lizard, Bill, was\tMiami\n03/04/2018\tin the middle, being held up by two guinea-pigs, who were giving it\tWashington\n03/04/2018\tsomething out of a bottle. They all made a rush at Alice the moment she\tNashville\n03/04/2018\t���The first thing I��ve got to do,�� said Alice to herself, as she wandered\tMiami\n03/04/2018\tthing is to find my way into that lovely garden. I think that will be\tNew York\n03/04/2018\tthe best plan.��\tDallas\n03/04/2018\thow to set about it; and while she was peering about anxiously among\tNashville\n03/04/2018\tgreat hurry.\tDallas\n03/04/2018\tAn enormous puppy was looking down at her with large round eyes, and\tNew York\n03/04/2018\tall her coaxing.\tNew York\n03/04/2018\tall its feet at once, with a yelp of delight, and rushed at the stick,\tMiami\n03/04/2018\tother side, the puppy made another rush at the stick, and tumbled head\tSeattle\n03/04/2018\tall the while, till at last it sat down a good way off, panting, with\tChicago\n03/04/2018\tset off at once, and ran till she was quite tired and out of breath, and\tWashington\n03/04/2018\ttill the puppy��s bark sounded quite faint in the distance.\tLos Angeles\n03/04/2018\tagainst a buttercup to rest herself, and fanned herself with one of the\tNashville\n03/04/2018\tonly been the right size to do it! Oh dear! I��d nearly forgotten that\tLos Angeles\n03/04/2018\tsuppose I ought to eat or drink something or other; but the great\tNew York\n03/04/2018\tthe flowers and the blades of grass, but she did not see anything that\tChicago\n03/04/2018\tThere was a large mushroom growing near her, about the same height as\tSan Francisco\n03/04/2018\tShe stretched herself up on tiptoe, and peeped over the edge of the\tNew York\n03/04/2018\tthat was sitting on the top with its arms folded, quietly smoking a long\tKansas\n03/04/2018\thookah, and taking not the smallest notice of her or of anything else.\tKansas\n03/04/2018\ther in a languid, sleepy voice.\tSan Francisco\n03/04/2018\twho I WAS when I got up this morning, but I think I must have been\tDallas\n03/04/2018\tchanged several times since then.��\tKansas\n03/04/2018\t���What do you mean by that?�� said the Caterpillar sternly. ���Explain\tMiami\n03/04/2018\t���I can��t explain MYSELF, I��m afraid, sir�� said Alice, ���because I��m not\tLos Angeles\n03/04/2018\t���I don��t see,�� said the Caterpillar.\tSeattle\n03/04/2018\t���I��m afraid I can��t put it more clearly,�� Alice replied very politely,\tDallas\n03/04/2018\t���It isn��t,�� said the Caterpillar.\tSan Francisco\n03/04/2018\tqueer, won��t you?��\tMiami\n04/04/2018\t���By-the-bye, what became of the baby?�� said the Cat. ���I��d nearly\tMiami\n04/04/2018\t���It turned into a pig,�� Alice quietly said, just as if it had come back\tNashville\n04/04/2018\tin a natural way.\tSan Francisco\n03/04/2018\t���You!�� said the Caterpillar contemptuously. ���Who are YOU?��\tSan Francisco\n03/04/2018\tWhich brought them back again to the beginning of the conversation.\tNew York\n03/04/2018\tAlice felt a little irritated at the Caterpillar��s making such VERY\tSan Francisco\n03/04/2018\tshort remarks, and she drew herself up and said, very gravely, ���I think,\tNew York\n03/04/2018\tyou ought to tell me who YOU are, first.��\tSeattle\n03/04/2018\t���Why?�� said the Caterpillar.\tMiami\n03/04/2018\tHere was another puzzling question; and as Alice could not think of any\tKansas\n03/04/2018\tstate of mind, she turned away.\tNew York\n03/04/2018\tto say!��\tChicago\n03/04/2018\t���Keep your temper,�� said the Caterpillar.\tNew York\n03/04/2018\t���Is that all?�� said Alice, swallowing down her anger as well as she\tNew York\n03/04/2018\tcould.\tMiami\n03/04/2018\tAlice thought she might as well wait, as she had nothing else to do, and\tNashville\n03/04/2018\tperhaps after all it might tell her something worth hearing. For some\tKansas\n03/04/2018\tyou��re changed, do you?��\tWashington\n03/04/2018\t���Can��t remember WHAT things?�� said the Caterpillar.\tChicago\n03/04/2018\t���Well, I��ve tried to say ���HOW DOTH THE LITTLE BUSY BEE,�� but it all came\tMiami\n03/04/2018\t���Repeat, ���YOU ARE OLD, FATHER WILLIAM,���� said the Caterpillar.\tSeattle\n03/04/2018\tAlice folded her hands, and began:--\tKansas\n03/04/2018\t���And your hair has become very white;\tMiami\n03/04/2018\tAnd yet you incessantly stand on your head--\tWashington\n03/04/2018\t���In my youth,�� Father William replied to his son,\tNashville\n03/04/2018\t���I feared it might injure the brain;\tMiami\n03/04/2018\tBut, now that I��m perfectly sure I have none,\tChicago\n03/04/2018\tWhy, I do it again and again.��\tNashville\n03/04/2018\t���You are old,�� said the youth, ���as I mentioned before,\tSan Francisco\n03/04/2018\tAnd have grown most uncommonly fat;\tNashville\n03/04/2018\tPray, what is the reason of that?��\tLos Angeles\n03/04/2018\t���I kept all my limbs very supple\tNashville\n03/04/2018\tAllow me to sell you a couple?��\tSan Francisco\n03/04/2018\tPray how did you manage to do it?��\tChicago\n03/04/2018\t���In my youth,�� said his father, ���I took to the law,\tSeattle\n04/04/2018\tAlice waited a little, half expecting to see it again, but it did not\tWashington\n04/04/2018\tsaid to herself; ���the March Hare will be much the most interesting, and\tSeattle\n03/04/2018\tAnd the muscular strength, which it gave to my jaw,\tNew York\n03/04/2018\t���I have answered three questions, and that is enough,��\tMiami\n03/04/2018\t���That is not said right,�� said the Caterpillar.\tLos Angeles\n03/04/2018\t���Not QUITE right, I��m afraid,�� said Alice, timidly; ���some of the words\tLos Angeles\n03/04/2018\thave got altered.��\tSeattle\n03/04/2018\tThe Caterpillar was the first to speak.\tNew York\n03/04/2018\t���What size do you want to be?�� it asked.\tDallas\n03/04/2018\tdoesn��t like changing so often, you know.��\tChicago\n03/04/2018\t���I DON��T know,�� said the Caterpillar.\tDallas\n03/04/2018\tAlice said nothing: she had never been so much contradicted in her life\tSan Francisco\n03/04/2018\tbefore, and she felt that she was losing her temper.\tDallas\n03/04/2018\t���Are you content now?�� said the Caterpillar.\tNashville\n03/04/2018\t���Well, I should like to be a LITTLE larger, sir, if you wouldn��t mind,��\tNashville\n03/04/2018\t���It is a very good height indeed!�� said the Caterpillar angrily, rearing\tMiami\n03/04/2018\titself upright as it spoke (it was exactly three inches high).\tLos Angeles\n03/04/2018\t���But I��m not used to it!�� pleaded poor Alice in a piteous tone. And\tNew York\n03/04/2018\tThis time Alice waited patiently until it chose to speak again. In\tNashville\n03/04/2018\ta minute or two the Caterpillar took the hookah out of its mouth\tWashington\n03/04/2018\t���One side will make you grow taller, and the other side will make you\tNew York\n03/04/2018\tgrow shorter.��\tKansas\n03/04/2018\t���Of the mushroom,�� said the Caterpillar, just as if she had asked it\tMiami\n03/04/2018\tAlice remained looking thoughtfully at the mushroom for a minute, trying\tKansas\n03/04/2018\tto make out which were the two sides of it; and as it was perfectly\tSeattle\n03/04/2018\tround, she found this a very difficult question. However, at last she\tSan Francisco\n03/04/2018\tstretched her arms round it as far as they would go, and broke off a bit\tWashington\n03/04/2018\tof the edge with each hand.\tChicago\n03/04/2018\t���And now which is which?�� she said to herself, and nibbled a little of\tKansas\n03/04/2018\tblow underneath her chin: it had struck her foot!\tChicago\n04/04/2018\tvanishing so suddenly: you make one quite giddy.��\tSeattle\n03/04/2018\tShe was a good deal frightened by this very sudden change, but she felt\tNew York\n03/04/2018\tset to work at once to eat some of the other bit. Her chin was pressed\tChicago\n03/04/2018\tmouth; but she did it at last, and managed to swallow a morsel of the\tKansas\n03/04/2018\t* * * * * * *\tNew York\n03/04/2018\t���Come, my head��s free at last!�� said Alice in a tone of delight, which\tLos Angeles\n03/04/2018\tchanged into alarm in another moment, when she found that her shoulders\tWashington\n03/04/2018\twere nowhere to be found: all she could see, when she looked down, was\tWashington\n03/04/2018\tsea of green leaves that lay far below her.\tNashville\n03/04/2018\tAs there seemed to be no chance of getting her hands up to her head, she\tLos Angeles\n03/04/2018\tto dive in among the leaves, which she found to be nothing but the tops\tWashington\n03/04/2018\tof the trees under which she had been wandering, when a sharp hiss made\tSeattle\n03/04/2018\ther draw back in a hurry: a large pigeon had flown into her face, and\tNew York\n03/04/2018\twas beating her violently with its wings.\tChicago\n03/04/2018\t���I��m NOT a serpent!�� said Alice indignantly. ���Let me alone!��\tWashington\n03/04/2018\t���Serpent, I say again!�� repeated the Pigeon, but in a more subdued tone,\tDallas\n03/04/2018\tand added with a kind of sob, ���I��ve tried every way, and nothing seems\tSan Francisco\n03/04/2018\tto suit them!��\tMiami\n03/04/2018\t���I haven��t the least idea what you��re talking about,�� said Alice.\tSeattle\n03/04/2018\thedges,�� the Pigeon went on, without attending to her; ���but those\tMiami\n03/04/2018\tserpents! There��s no pleasing them!��\tKansas\n03/04/2018\tAlice was more and more puzzled, but she thought there was no use in\tLos Angeles\n03/04/2018\t���I��m very sorry you��ve been annoyed,�� said Alice, who was beginning to\tLos Angeles\n03/04/2018\tsee its meaning.\tWashington\n03/04/2018\t���And just as I��d taken the highest tree in the wood,�� continued the\tSan Francisco\n03/04/2018\tPigeon, raising its voice to a shriek, ���and just as I was thinking I\tMiami\n03/04/2018\tshould be free of them at last, they must needs come wriggling down from\tNew York\n03/04/2018\t���But I��m NOT a serpent, I tell you!�� said Alice. ���I��m a--I��m a--��\tKansas\n03/04/2018\t���Well! WHAT are you?�� said the Pigeon. ���I can see you��re trying to\tChicago\n03/04/2018\tinvent something!��\tNashville\n03/04/2018\t���I--I��m a little girl,�� said Alice, rather doubtfully, as she remembered\tSan Francisco\n04/04/2018\tremained some time after the rest of it had gone.\tNew York\n04/04/2018\twithout a cat! It��s the most curious thing I ever saw in my life!��\tNew York\n03/04/2018\tthe number of changes she had gone through that day.\tLos Angeles\n03/04/2018\t���A likely story indeed!�� said the Pigeon in a tone of the deepest\tChicago\n03/04/2018\tcontempt. ���I��ve seen a good many little girls in my time, but never ONE\tSeattle\n03/04/2018\twith such a neck as that! No, no! You��re a serpent; and there��s no use\tWashington\n03/04/2018\tegg!��\tKansas\n03/04/2018\t���I HAVE tasted eggs, certainly,�� said Alice, who was a very truthful\tMiami\n03/04/2018\tchild; ���but little girls eat eggs quite as much as serpents do, you\tDallas\n03/04/2018\t���I don��t believe it,�� said the Pigeon; ���but if they do, why then they��re\tLos Angeles\n03/04/2018\tminute or two, which gave the Pigeon the opportunity of adding, ���You��re\tNashville\n03/04/2018\tlooking for eggs, I know THAT well enough; and what does it matter to me\tNashville\n04/04/2018\t���It matters a good deal to ME,�� said Alice hastily; ���but I��m not looking\tDallas\n04/04/2018\tfor eggs, as it happens; and if I was, I shouldn��t want YOURS: I don��t\tMiami\n04/04/2018\tdown again into its nest. Alice crouched down among the trees as well as\tNew York\n04/04/2018\tshe set to work very carefully, nibbling first at one and then at the\tSeattle\n04/04/2018\tsucceeded in bringing herself down to her usual height.\tSeattle\n04/04/2018\tfelt quite strange at first; but she got used to it in a few minutes,\tWashington\n04/04/2018\tnow! How puzzling all these changes are! I��m never sure what I��m going\tSan Francisco\n04/04/2018\tsize: the next thing is, to get into that beautiful garden--how IS that\tNew York\n04/04/2018\trighthand bit again, and did not venture to go near the house till she\tSeattle\n04/04/2018\tto do next, when suddenly a footman in livery came running out of the\tDallas\n04/04/2018\totherwise, judging by his face only, she would have called him a\tKansas\n04/04/2018\tfish)--and rapped loudly at the door with his knuckles. It was opened\tSeattle\n04/04/2018\tby another footman in livery, with a round face, and large eyes like a\tMiami\n04/04/2018\tfrog; and both footmen, Alice noticed, had powdered hair that curled all\tChicago\n04/04/2018\tShe had not gone much farther before she came in sight of the house\tMiami\n04/04/2018\tof the March Hare: she thought it must be the right house, because the\tKansas\n04/04/2018\tnearly as large as himself, and this he handed over to the other,\tSan Francisco\n04/04/2018\tsaying, in a solemn tone, ���For the Duchess. An invitation from the Queen\tLos Angeles\n04/04/2018\tonly changing the order of the words a little, ���From the Queen. An\tKansas\n04/04/2018\tAlice laughed so much at this, that she had to run back into the\tMiami\n04/04/2018\tdoor, staring stupidly up into the sky.\tSan Francisco\n04/04/2018\tgoing on within--a constant howling and sneezing, and every now and then\tKansas\n04/04/2018\t���Please, then,�� said Alice, ���how am I to get in?��\tChicago\n04/04/2018\tif you were INSIDE, you might knock, and I could let you out, you know.��\tLos Angeles\n04/04/2018\tHe was looking up into the sky all the time he was speaking, and this\tSeattle\n04/04/2018\tsaid to herself; ���his eyes are so VERY nearly at the top of his head.\tMiami\n04/04/2018\tAt this moment the door of the house opened, and a large plate came\tNashville\n04/04/2018\t���ARE you to get in at all?�� said the Footman. ���That��s the first\tSeattle\n04/04/2018\tIt was, no doubt: only Alice did not like to be told so. ���It��s really\tWashington\n04/04/2018\tThe Footman seemed to think this a good opportunity for repeating his\tNashville\n04/04/2018\t���Anything you like,�� said the Footman, and began whistling.\tLos Angeles\n04/04/2018\tThe door led right into a large kitchen, which was full of smoke from\tSan Francisco\n04/04/2018\tthe middle, nursing a baby; the cook was leaning over the fire, stirring\tNashville\n04/04/2018\t���There��s certainly too much pepper in that soup!�� Alice said to herself,\tNew York\n04/04/2018\tabout two feet high: even then she walked up towards it rather timidly,\tNew York\n04/04/2018\twish I��d gone to see the Hatter instead!��\tSeattle\n04/04/2018\tas well as she could for sneezing.\tSeattle\n04/04/2018\tThere was certainly too much of it in the air. Even the Duchess\tMiami\n04/04/2018\tShe said the last word with such sudden violence that Alice quite\tKansas\n04/04/2018\tand not to her, so she took courage, and went on again:--\tChicago\n04/04/2018\t���I didn��t know that Cheshire cats always grinned; in fact, I didn��t know\tDallas\n04/04/2018\tthat cats COULD grin.��\tChicago\n04/04/2018\tpleased to have got into a conversation.\tSan Francisco\n04/04/2018\tAlice did not at all like the tone of this remark, and thought it would\tSeattle\n04/04/2018\tfire, and at once set to work throwing everything within her reach at\tMiami\n04/04/2018\tthem even when they hit her; and the baby was howling so much already,\tWashington\n04/04/2018\t���Oh, PLEASE mind what you��re doing!�� cried Alice, jumping up and down in\tMiami\n04/04/2018\tan agony of terror. ���Oh, there goes his PRECIOUS nose��; as an unusually\tSan Francisco\n04/04/2018\tgrowl, ���the world would go round a deal faster than it does.��\tNew York\n04/04/2018\t���Which would NOT be an advantage,�� said Alice, who felt very glad to get\tLos Angeles\n04/04/2018\tan opportunity of showing off a little of her knowledge. ���Just think of\tSan Francisco\n04/04/2018\tAlice glanced rather anxiously at the cook, to see if she meant to take\tMiami\n04/04/2018\tlullaby to it as she did so, and giving it a violent shake at the end of\tNashville\n04/04/2018\tAnd beat him when he sneezes:\tNew York\n04/04/2018\tHe only does it to annoy,\tLos Angeles\n04/04/2018\tbe listening, so she went on again: ���Twenty-four hours, I THINK; or is\tNashville\n04/04/2018\tAnd with that she began nursing her child again, singing a sort of\tWashington\n04/04/2018\tMarch Hare and the Hatter were having tea at it: a Dormouse was sitting\tSeattle\n04/04/2018\tcushion, resting their elbows on it, and talking over its head. ���Very\tNashville\n04/04/2018\tsuppose it doesn��t mind.��\tWashington\n04/04/2018\t���I speak severely to my boy,\tNashville\n04/04/2018\tI beat him when he sneezes;\tLos Angeles\n04/04/2018\t���Wow! wow! wow!��\tDallas\n04/04/2018\tflinging the baby at her as she spoke. ���I must go and get ready to play\tMiami\n04/04/2018\ta frying-pan after her as she went out, but it just missed her.\tMiami\n04/04/2018\tAlice caught the baby with some difficulty, as it was a queer-shaped\tLos Angeles\n04/04/2018\tlike a star-fish,�� thought Alice. The poor little thing was snorting\tSan Francisco\n04/04/2018\tor two, it was as much as she could do to hold it.\tKansas\n04/04/2018\tear and left foot, so as to prevent its undoing itself,) she carried\tSeattle\n04/04/2018\tit out into the open air. ���IF I don��t take this child away with me,��\tMiami\n04/04/2018\tmurder to leave it behind?�� She said the last words out loud, and the\tChicago\n04/04/2018\tlittle thing grunted in reply (it had left off sneezing by this time).\tDallas\n04/04/2018\tyourself.��\tNashville\n04/04/2018\ta VERY turn-up nose, much more like a snout than a real nose; also its\tChicago\n04/04/2018\tlike the look of the thing at all. ���But perhaps it was only sobbing,��\tNew York\n04/04/2018\tto say which), and they went on for some while in silence.\tMiami\n04/04/2018\tAlice was just beginning to think to herself, ���Now, what am I to do with\tMiami\n04/04/2018\tthis creature when I get it home?�� when it grunted again, so violently,\tKansas\n04/04/2018\tthat she looked down into its face in some alarm. This time there could\tKansas\n04/04/2018\tfelt that it would be quite absurd for her to carry it further.\tSeattle\n04/04/2018\tto herself, ���it would have made a dreadfully ugly child: but it makes\tChicago\n04/04/2018\tThe table was a large one, but the three were all crowded together at\tSeattle\n04/04/2018\tone corner of it: ���No room! No room!�� they cried out when they saw Alice\tChicago\n04/04/2018\tthought: still it had VERY long claws and a great many teeth, so she\tChicago\n04/04/2018\tfelt that it ought to be treated with respect.\tNashville\n04/04/2018\t���Cheshire Puss,�� she began, rather timidly, as she did not at all know\tWashington\n04/04/2018\ttell me, please, which way I ought to go from here?��\tNashville\n04/04/2018\t���Then it doesn��t matter which way you go,�� said the Cat.\tWashington\n04/04/2018\t���--so long as I get SOMEWHERE,�� Alice added as an explanation.\tKansas\n04/04/2018\t���Oh, you��re sure to do that,�� said the Cat, ���if you only walk long\tNashville\n04/04/2018\tAlice felt that this could not be denied, so she tried another question.\tKansas\n04/04/2018\t���In THAT direction,�� the Cat said, waving its right paw round, ���lives\tNew York\n04/04/2018\ta Hatter: and in THAT direction,�� waving the other paw, ���lives a March\tSeattle\n04/04/2018\t���Oh, you can��t help that,�� said the Cat: ���we��re all mad here. I��m mad.\tWashington\n04/04/2018\tYou��re mad.��\tNashville\n04/04/2018\t���You must be,�� said the Cat, ���or you wouldn��t have come here.��\tDallas\n04/04/2018\tAlice didn��t think that proved it at all; however, she went on ���And how\tKansas\n04/04/2018\tdo you know that you��re mad?��\tSan Francisco\n04/04/2018\t���To begin with,�� said the Cat, ���a dog��s not mad. You grant that?��\tSan Francisco\n04/04/2018\tand wags its tail when it��s pleased. Now I growl when I��m pleased, and\tMiami\n04/04/2018\twag my tail when I��m angry. Therefore I��m mad.��\tSeattle\n04/04/2018\t���Call it what you like,�� said the Cat. ���Do you play croquet with the\tLos Angeles\n04/04/2018\tQueen to-day?��\tDallas\n04/04/2018\tyet.��\tLos Angeles\n04/04/2018\t���It turned into a pig,�� Alice quietly said, just as if it had come back\tNashville\n04/04/2018\tin a natural way.\tSan Francisco\n04/04/2018\t���I thought it would,�� said the Cat, and vanished again.\tMiami\n04/04/2018\tAlice waited a little, half expecting to see it again, but it did not\tWashington\n04/04/2018\tappear, and after a minute or two she walked on in the direction in\tNashville\n04/04/2018\tAlice looked all round the table, but there was nothing on it but tea.\tSan Francisco\n04/04/2018\t���There isn��t any,�� said the March Hare.\tKansas\n04/04/2018\t���It wasn��t very civil of you to sit down without being invited,�� said\tMiami\n04/04/2018\twhich the March Hare was said to live. ���I��ve seen hatters before,�� she\tWashington\n04/04/2018\tsaid to herself; ���the March Hare will be much the most interesting, and\tSeattle\n04/04/2018\tperhaps as this is May it won��t be raving mad--at least not so mad as\tKansas\n04/04/2018\tvanishing so suddenly: you make one quite giddy.��\tSeattle\n04/04/2018\t���All right,�� said the Cat; and this time it vanished quite slowly,\tKansas\n04/04/2018\tbeginning with the end of the tail, and ending with the grin, which\tMiami\n04/04/2018\tremained some time after the rest of it had gone.\tNew York\n04/04/2018\tShe had not gone much farther before she came in sight of the house\tMiami\n04/04/2018\tchimneys were shaped like ears and the roof was thatched with fur. It\tNashville\n04/04/2018\twas so large a house, that she did not like to go nearer till she had\tSan Francisco\n04/04/2018\tnibbled some more of the lefthand bit of mushroom, and raised herself to\tLos Angeles\n04/04/2018\tCHAPTER VII. A Mad Tea-Party\tNew York\n04/04/2018\tThere was a table set out under a tree in front of the house, and the\tLos Angeles\n04/04/2018\tuncomfortable for the Dormouse,�� thought Alice; ���only, as it��s asleep, I\tSeattle\n04/04/2018\tsuppose it doesn��t mind.��\tWashington\n04/04/2018\tone corner of it: ���No room! No room!�� they cried out when they saw Alice\tChicago\n04/04/2018\tdown in a large arm-chair at one end of the table.\tSeattle\n04/04/2018\t���Have some wine,�� the March Hare said in an encouraging tone.\tLos Angeles\n04/04/2018\tAlice looked all round the table, but there was nothing on it but tea.\tSan Francisco\n04/04/2018\t���I don��t see any wine,�� she remarked.\tLos Angeles\n04/04/2018\t���Then it wasn��t very civil of you to offer it,�� said Alice angrily.\tChicago\n04/04/2018\tmany more than three.��\tKansas\n04/04/2018\t���Your hair wants cutting,�� said the Hatter. He had been looking at Alice\tNashville\n04/04/2018\t���You should learn not to make personal remarks,�� Alice said with some\tKansas\n04/04/2018\tThe Hatter opened his eyes very wide on hearing this; but all he SAID\tDallas\n04/04/2018\tbegun asking riddles.--I believe I can guess that,�� she added aloud.\tSeattle\n04/04/2018\tthe March Hare.\tSan Francisco\n04/04/2018\t���Your hair wants cutting,�� said the Hatter. He had been looking at Alice\tNashville\n04/04/2018\tfor some time with great curiosity, and this was his first speech.\tNew York\n05/04/2018\t���I do,�� Alice hastily replied; ���at least--at least I mean what I\tNew York\n05/04/2018\t���Not the same thing a bit!�� said the Hatter. ���You might just as well say\tNew York\n05/04/2018\t���You might just as well say,�� added the March Hare, ���that ���I like what I\tKansas\n05/04/2018\tget�� is the same thing as ���I get what I like��!��\tLos Angeles\n05/04/2018\ttalking in his sleep, ���that ���I breathe when I sleep�� is the same thing\tNashville\n05/04/2018\tas ���I sleep when I breathe��!��\tNew York\n05/04/2018\tconversation dropped, and the party sat silent for a minute, while Alice\tNew York\n05/04/2018\tthought over all she could remember about ravens and writing-desks,\tMiami\n05/04/2018\twhich wasn��t much.\tSan Francisco\n05/04/2018\tThe Hatter was the first to break the silence. ���What day of the month\tNashville\n05/04/2018\tAlice considered a little, and then said ���The fourth.��\tNew York\n05/04/2018\t���Two days wrong!�� sighed the Hatter. ���I told you butter wouldn��t suit\tDallas\n05/04/2018\t���you shouldn��t have put it in with the bread-knife.��\tChicago\n05/04/2018\tThe March Hare took the watch and looked at it gloomily: then he dipped\tSeattle\n05/04/2018\tyou know.��\tMiami\n05/04/2018\tAlice had been looking over his shoulder with some curiosity. ���What a\tLos Angeles\n05/04/2018\tstays the same year for such a long time together.��\tNew York\n05/04/2018\t���Which is just the case with MINE,�� said the Hatter.\tNew York\n05/04/2018\tAlice felt dreadfully puzzled. The Hatter��s remark seemed to have no\tKansas\n05/04/2018\tsort of meaning in it, and yet it was certainly English. ���I don��t quite\tSeattle\n05/04/2018\tunderstand you,�� she said, as politely as she could.\tNashville\n05/04/2018\t���Have you guessed the riddle yet?�� the Hatter said, turning to Alice\tMiami\n05/04/2018\t���I haven��t the slightest idea,�� said the Hatter.\tNashville\n05/04/2018\tAlice sighed wearily. ���I think you might do something better with the\tNashville\n04/04/2018\tseverity; ���it��s very rude.��\tChicago\n04/04/2018\twas, ���Why is a raven like a writing-desk?��\tNew York\n05/04/2018\tabout wasting IT. It��s HIM.��\tNashville\n05/04/2018\t���I don��t know what you mean,�� said Alice.\tKansas\n05/04/2018\t���Of course you don��t!�� the Hatter said, tossing his head contemptuously.\tMiami\n05/04/2018\t���I dare say you never even spoke to Time!��\tSeattle\n05/04/2018\t���Perhaps not,�� Alice cautiously replied: ���but I know I have to beat time\tWashington\n05/04/2018\ttime for dinner!��\tChicago\n05/04/2018\t[���I only wish it was,�� the March Hare said to itself in a whisper.)\tMiami\n05/04/2018\t���That would be grand, certainly,�� said Alice thoughtfully: ���but then--I\tNew York\n05/04/2018\t���Not at first, perhaps,�� said the Hatter: ���but you could keep it to\tNashville\n05/04/2018\t���Is that the way YOU manage?�� Alice asked.\tKansas\n05/04/2018\tThe Hatter shook his head mournfully. ���Not I!�� he replied. ���We\tMiami\n05/04/2018\twith his tea spoon at the March Hare,) ���--it was at the great concert\tMiami\n05/04/2018\tgiven by the Queen of Hearts, and I had to sing\tSeattle\n05/04/2018\t���Twinkle, twinkle, little bat!\tNashville\n05/04/2018\tYou know the song, perhaps?��\tDallas\n05/04/2018\t���It goes on, you know,�� the Hatter continued, ���in this way:--\tNew York\n05/04/2018\tHere the Dormouse shook itself, and began singing in its sleep ���Twinkle,\tMiami\n05/04/2018\ttwinkle, twinkle, twinkle--�� and went on so long that they had to pinch\tMiami\n05/04/2018\t���Well, I��d hardly finished the first verse,�� said the Hatter, ���when the\tKansas\n05/04/2018\tQueen jumped up and bawled out, ���He��s murdering the time! Off with his\tNashville\n05/04/2018\t���And ever since that,�� the Hatter went on in a mournful tone, ���he won��t\tSeattle\n05/04/2018\tdo a thing I ask! It��s always six o��clock now.��\tNew York\n05/04/2018\tA bright idea came into Alice��s head. ���Is that the reason so many\tNew York\n05/04/2018\t���But what happens when you come to the beginning again?�� Alice ventured\tChicago\n05/04/2018\t���I��m getting tired of this. I vote the young lady tells us a story.��\tSeattle\n04/04/2018\tbegun asking riddles.--I believe I can guess that,�� she added aloud.\tSeattle\n04/04/2018\t���Do you mean that you think you can find out the answer to it?�� said the\tNashville\n04/04/2018\tMarch Hare.\tSeattle\n05/04/2018\tproposal.\tSeattle\n05/04/2018\t���Then the Dormouse shall!�� they both cried. ���Wake up, Dormouse!�� And\tNashville\n05/04/2018\thoarse, feeble voice: ���I heard every word you fellows were saying.��\tSeattle\n05/04/2018\t���Tell us a story!�� said the March Hare.\tLos Angeles\n05/04/2018\tin a great hurry; ���and their names were Elsie, Lacie, and Tillie; and\tLos Angeles\n05/04/2018\tthey lived at the bottom of a well--��\tLos Angeles\n05/04/2018\t���What did they live on?�� said Alice, who always took a great interest in\tMiami\n05/04/2018\thave been ill.��\tNew York\n05/04/2018\t���So they were,�� said the Dormouse; ���VERY ill.��\tNashville\n05/04/2018\twhy did they live at the bottom of a well?��\tChicago\n05/04/2018\t���I��ve had nothing yet,�� Alice replied in an offended tone, ���so I can��t\tLos Angeles\n05/04/2018\t���You mean you can��t take LESS,�� said the Hatter: ���it��s very easy to take\tKansas\n05/04/2018\tto some tea and bread-and-butter, and then turned to the Dormouse, and\tNew York\n05/04/2018\trepeated her question. ���Why did they live at the bottom of a well?��\tSan Francisco\n05/04/2018\tThe Dormouse again took a minute or two to think about it, and then\tChicago\n05/04/2018\t���There��s no such thing!�� Alice was beginning very angrily, but the\tNew York\n05/04/2018\tHatter and the March Hare went ���Sh! sh!�� and the Dormouse sulkily\tSeattle\n05/04/2018\tremarked, ���If you can��t be civil, you��d better finish the story for\tMiami\n05/04/2018\t���No, please go on!�� Alice said very humbly; ���I won��t interrupt again. I\tWashington\n05/04/2018\tdare say there may be ONE.��\tMiami\n05/04/2018\t���One, indeed!�� said the Dormouse indignantly. However, he consented to\tSan Francisco\n05/04/2018\tyou know--��\tMiami\n05/04/2018\t���Treacle,�� said the Dormouse, without considering at all this time.\tMiami\n05/04/2018\tHe moved on as he spoke, and the Dormouse followed him: the March Hare\tWashington\n05/04/2018\tmoved into the Dormouse��s place, and Alice rather unwillingly took\tDallas\n05/04/2018\t���I do,�� Alice hastily replied; ���at least--at least I mean what I\tNew York\n05/04/2018\tthat ���I see what I eat�� is the same thing as ���I eat what I see��!��\tWashington\n05/04/2018\tadvantage from the change: and Alice was a good deal worse off than\tNashville\n05/04/2018\tbefore, as the March Hare had just upset the milk-jug into his plate.\tChicago\n05/04/2018\t���You can draw water out of a water-well,�� said the Hatter; ���so I should\tChicago\n05/04/2018\tthink you could draw treacle out of a treacle-well--eh, stupid?��\tNashville\n05/04/2018\tits eyes, for it was getting very sleepy; ���and they drew all manner of\tDallas\n05/04/2018\tthings--everything that begins with an M--��\tSeattle\n05/04/2018\t���Why with an M?�� said Alice.\tKansas\n05/04/2018\t���Why not?�� said the March Hare.\tSeattle\n05/04/2018\tAlice was silent.\tSan Francisco\n05/04/2018\ta little shriek, and went on: ���--that begins with an M, such as\tKansas\n05/04/2018\tmouse-traps, and the moon, and memory, and muchness--you know you say\tSan Francisco\n05/04/2018\tthings are ���much of a muchness��--did you ever see such a thing as a\tDallas\n05/04/2018\tdrawing of a muchness?��\tDallas\n05/04/2018\tthink--��\tWashington\n05/04/2018\tThis piece of rudeness was more than Alice could bear: she got up in\tNew York\n05/04/2018\tneither of the others took the least notice of her going, though she\tNashville\n05/04/2018\tthe last time she saw them, they were trying to put the Dormouse into\tMiami\n05/04/2018\tthe teapot.\tMiami\n05/04/2018\tmy life!��\tSeattle\n05/04/2018\tshe went.\tDallas\n05/04/2018\tglass table. ���Now, I��ll manage better this time,�� she said to herself,\tLos Angeles\n05/04/2018\tand began by taking the little golden key, and unlocking the door that\tMiami\n05/04/2018\tled into the garden. Then she went to work nibbling at the mushroom (she\tSeattle\n05/04/2018\thad kept a piece of it in her pocket) till she was about a foot high:\tLos Angeles\n05/04/2018\tCHAPTER VIII. The Queen��s Croquet-Ground\tDallas\n05/04/2018\ttalking in his sleep, ���that ���I breathe when I sleep�� is the same thing\tNashville\n05/04/2018\tgrowing on it were white, but there were three gardeners at it, busily\tNashville\n05/04/2018\tpainting them red. Alice thought this a very curious thing, and she went\tSeattle\n05/04/2018\tnearer to watch them, and just as she came up to them she heard one of\tChicago\n05/04/2018\tthem say, ���Look out now, Five! Don��t go splashing paint over me like\tNashville\n05/04/2018\tOn which Seven looked up and said, ���That��s right, Five! Always lay the\tLos Angeles\n05/04/2018\tyesterday you deserved to be beheaded!��\tLos Angeles\n05/04/2018\t���What for?�� said the one who had spoken first.\tNew York\n05/04/2018\tbringing the cook tulip-roots instead of onions.��\tSeattle\n05/04/2018\tSeven flung down his brush, and had just begun ���Well, of all the unjust\tMiami\n05/04/2018\tthings--�� when his eye chanced to fall upon Alice, as she stood watching\tLos Angeles\n05/04/2018\tthem, and he checked himself suddenly: the others looked round also, and\tDallas\n05/04/2018\tall of them bowed low.\tSeattle\n05/04/2018\t���Would you tell me,�� said Alice, a little timidly, ���why you are painting\tNashville\n05/04/2018\tthose roses?��\tChicago\n05/04/2018\tFive and Seven said nothing, but looked at Two. Two began in a low\tSan Francisco\n05/04/2018\tRED rose-tree, and we put a white one in by mistake; and if the Queen\tLos Angeles\n05/04/2018\twas to find it out, we should all have our heads cut off, you know.\tSan Francisco\n05/04/2018\tmoment Five, who had been anxiously looking across the garden, called\tNew York\n05/04/2018\tthemselves flat upon their faces. There was a sound of many footsteps,\tLos Angeles\n05/04/2018\tand Alice looked round, eager to see the Queen.\tSeattle\n05/04/2018\tFirst came ten soldiers carrying clubs; these were all shaped like\tLos Angeles\n05/04/2018\tthe three gardeners, oblong and flat, with their hands and feet at the\tKansas\n05/04/2018\tjumping merrily along hand in hand, in couples: they were all ornamented\tWashington\n05/04/2018\tprocession, came THE KING AND QUEEN OF HEARTS.\tNashville\n05/04/2018\tAlice was rather doubtful whether she ought not to lie down on her face\tWashington\n05/04/2018\tlike the three gardeners, but she could not remember ever having heard\tChicago\n05/04/2018\tof such a rule at processions; ���and besides, what would be the use of\tSeattle\n05/04/2018\ta procession,�� thought she, ���if people had all to lie down upon their\tDallas\n05/04/2018\tfaces, so that they couldn��t see it?�� So she stood still where she was,\tMiami\n05/04/2018\tWhen the procession came opposite to Alice, they all stopped and looked\tNashville\n05/04/2018\tthought over all she could remember about ravens and writing-desks,\tMiami\n05/04/2018\twhich wasn��t much.\tSan Francisco\n05/04/2018\t���Idiot!�� said the Queen, tossing her head impatiently; and, turning to\tNashville\n05/04/2018\t���And who are THESE?�� said the Queen, pointing to the three gardeners who\tChicago\n05/04/2018\twere lying round the rosetree; for, you see, as they were lying on their\tMiami\n05/04/2018\tpack, she could not tell whether they were gardeners, or soldiers, or\tMiami\n05/04/2018\tcourtiers, or three of her own children.\tSan Francisco\n05/04/2018\t���How should I know?�� said Alice, surprised at her own courage. ���It��s no\tNashville\n05/04/2018\tbusiness of MINE.��\tWashington\n05/04/2018\t���Nonsense!�� said Alice, very loudly and decidedly, and the Queen was\tSan Francisco\n05/04/2018\tsilent.\tMiami\n05/04/2018\tThe King laid his hand upon her arm, and timidly said ���Consider, my\tMiami\n05/04/2018\tdear: she is only a child!��\tMiami\n05/04/2018\tover!��\tKansas\n05/04/2018\t���Get up!�� said the Queen, in a shrill, loud voice, and the three\tDallas\n05/04/2018\tgardeners instantly jumped up, and began bowing to the King, the Queen,\tDallas\n05/04/2018\t���Leave off that!�� screamed the Queen. ���You make me giddy.�� And then,\tSeattle\n05/04/2018\tsoldiers remaining behind to execute the unfortunate gardeners, who ran\tKansas\n05/04/2018\tflower-pot that stood near. The three soldiers wandered about for a\tNew York\n05/04/2018\t���Their heads are gone, if it please your Majesty!�� the soldiers shouted\tMiami\n06/04/2018\t���That��s right!�� shouted the Queen. ���Can you play croquet?��\tSan Francisco\n06/04/2018\tThe soldiers were silent, and looked at Alice, as the question was\tMiami\n06/04/2018\tevidently meant for her.\tSan Francisco\n06/04/2018\t���Come on, then!�� roared the Queen, and Alice joined the procession,\tSeattle\n06/04/2018\twalking by the White Rabbit, who was peeping anxiously into her face.\tDallas\n06/04/2018\t���Very,�� said Alice: ���--where��s the Duchess?��\tDallas\n05/04/2018\t���Two days wrong!�� sighed the Hatter. ���I told you butter wouldn��t suit\tDallas\n05/04/2018\t���Yes, but some crumbs must have got in as well,�� the Hatter grumbled:\tSeattle\n06/04/2018\t���Hush! Hush!�� said the Rabbit in a low, hurried tone. He looked\tWashington\n06/04/2018\t���No, I didn��t,�� said Alice: ���I don��t think it��s at all a pity. I said\tDallas\n06/04/2018\t���She boxed the Queen��s ears--�� the Rabbit began. Alice gave a little\tDallas\n06/04/2018\tscream of laughter. ���Oh, hush!�� the Rabbit whispered in a frightened\tSan Francisco\n06/04/2018\t���Get to your places!�� shouted the Queen in a voice of thunder, and\tDallas\n06/04/2018\tpeople began running about in all directions, tumbling up against each\tLos Angeles\n06/04/2018\tother; however, they got settled down in a minute or two, and the game\tDallas\n06/04/2018\tbegan. Alice thought she had never seen such a curious croquet-ground in\tChicago\n06/04/2018\tthe mallets live flamingoes, and the soldiers had to double themselves\tWashington\n06/04/2018\tup and to stand on their hands and feet, to make the arches.\tSan Francisco\n06/04/2018\tshe succeeded in getting its body tucked away, comfortably enough, under\tSeattle\n06/04/2018\ther arm, with its legs hanging down, but generally, just as she had got\tNashville\n06/04/2018\tblow with its head, it WOULD twist itself round and look up in her face,\tSeattle\n06/04/2018\tlaughing: and when she had got its head down, and was going to begin\tNashville\n06/04/2018\tgenerally a ridge or furrow in the way wherever she wanted to send the\tWashington\n06/04/2018\thedgehog to, and, as the doubled-up soldiers were always getting up\tSeattle\n06/04/2018\tand walking off to other parts of the ground, Alice soon came to the\tLos Angeles\n06/04/2018\tshouting ���Off with his head!�� or ���Off with her head!�� about once in a\tLos Angeles\n06/04/2018\tminute.\tSan Francisco\n06/04/2018\tfond of beheading people here; the great wonder is, that there��s any one\tNew York\n06/04/2018\tleft alive!��\tKansas\n06/04/2018\tShe was looking about for some way of escape, and wondering whether she\tSeattle\n06/04/2018\ta minute or two, she made it out to be a grin, and she said to herself\tSeattle\n06/04/2018\tenough for it to speak with.\tSeattle\n06/04/2018\tAlice waited till the eyes appeared, and then nodded. ���It��s no use\tSeattle\n04/04/2018\t���Speak roughly to your little boy,\tMiami\n04/04/2018\tAnd beat him when he sneezes:\tNew York\n05/04/2018\tit into his cup of tea, and looked at it again: but he could think of\tWashington\n05/04/2018\tnothing better to say than his first remark, ���It was the BEST butter,\tWashington\n06/04/2018\tof them.�� In another minute the whole head appeared, and then Alice put\tSeattle\n06/04/2018\tshe had someone to listen to her. The Cat seemed to think that there was\tDallas\n06/04/2018\tenough of it now in sight, and no more of it appeared.\tWashington\n06/04/2018\t���I don��t think they play at all fairly,�� Alice began, in rather a\tChicago\n06/04/2018\tat least, if there are, nobody attends to them--and you��ve no idea how\tWashington\n06/04/2018\tarch I��ve got to go through next walking about at the other end of the\tNew York\n06/04/2018\t���Not at all,�� said Alice: ���she��s so extremely--�� Just then she noticed\tKansas\n06/04/2018\tThe Queen smiled and passed on.\tNashville\n06/04/2018\t���Who ARE you talking to?�� said the King, going up to Alice, and looking\tSan Francisco\n06/04/2018\tat the Cat��s head with great curiosity.\tNew York\n06/04/2018\t���I don��t like the look of it at all,�� said the King: ���however, it may\tSan Francisco\n06/04/2018\tkiss my hand if it likes.��\tChicago\n06/04/2018\t���I��d rather not,�� the Cat remarked.\tNashville\n06/04/2018\tHe got behind Alice as he spoke.\tSeattle\n06/04/2018\t���Well, it must be removed,�� said the King very decidedly, and he called\tLos Angeles\n06/04/2018\thave this cat removed!��\tNashville\n06/04/2018\t���Off with his head!�� she said, without even looking round.\tChicago\n06/04/2018\t���I��ll fetch the executioner myself,�� said the King eagerly, and he\tChicago\n06/04/2018\tAlice thought she might as well go back, and see how the game was going\tLos Angeles\n06/04/2018\tpassion. She had already heard her sentence three of the players to be\tWashington\n06/04/2018\texecuted for having missed their turns, and she did not like the look\tSan Francisco\n06/04/2018\tof things at all, as the game was in such confusion that she never knew\tNew York\n06/04/2018\twhether it was her turn or not. So she went in search of her hedgehog.\tDallas\n06/04/2018\tother: the only difficulty was, that her flamingo was gone across to the\tDallas\n05/04/2018\tfunny watch!�� she remarked. ���It tells the day of the month, and doesn��t\tNashville\n05/04/2018\ttell what o��clock it is!��\tNashville\n05/04/2018\t���Why should it?�� muttered the Hatter. ���Does YOUR watch tell you what\tSeattle\n06/04/2018\tescape again, and went back for a little more conversation with her\tLos Angeles\n06/04/2018\tlarge crowd collected round it: there was a dispute going on between\tLos Angeles\n06/04/2018\tthe executioner, the King, and the Queen, who were all talking at once,\tSeattle\n06/04/2018\tthe question, and they repeated their arguments to her, though, as they\tDallas\n06/04/2018\tThe executioner��s argument was, that you couldn��t cut off a head unless\tChicago\n06/04/2018\tthere was a body to cut it off from: that he had never had to do such a\tWashington\n06/04/2018\tthing before, and he wasn��t going to begin at HIS time of life.\tSeattle\n06/04/2018\tbeheaded, and that you weren��t to talk nonsense.\tDallas\n06/04/2018\tthan no time she��d have everybody executed, all round. (It was this last\tChicago\n06/04/2018\tremark that had made the whole party look so grave and anxious.)\tSan Francisco\n06/04/2018\tAnd the executioner went off like an arrow.\tWashington\n06/04/2018\tdisappeared; so the King and the executioner ran wildly up and down\tSeattle\n06/04/2018\tCHAPTER IX. The Mock Turtle��s Story\tWashington\n06/04/2018\t���You can��t think how glad I am to see you again, you dear old thing!��\tChicago\n06/04/2018\tsaid the Duchess, as she tucked her arm affectionately into Alice��s, and\tDallas\n06/04/2018\tto herself that perhaps it was only the pepper that had made her so\tLos Angeles\n06/04/2018\tsavage when they met in the kitchen.\tMiami\n06/04/2018\t���When I��M a Duchess,�� she said to herself, (not in a very hopeful tone\tDallas\n06/04/2018\tstingy about it, you know--��\tNashville\n06/04/2018\tShe had quite forgotten the Duchess by this time, and was a little\tChicago\n06/04/2018\ta bit.��\tKansas\n06/04/2018\t���Tut, tut, child!�� said the Duchess. ���Everything��s got a moral, if only\tLos Angeles\n05/04/2018\t���Of course not,�� Alice replied very readily: ���but that��s because it\tKansas\n05/04/2018\tAlice felt dreadfully puzzled. The Hatter��s remark seemed to have no\tKansas\n06/04/2018\tyou can find it.�� And she squeezed herself up closer to Alice��s side as\tSan Francisco\n06/04/2018\tshe spoke.\tSeattle\n06/04/2018\tAlice did not much like keeping so close to her: first, because the\tWashington\n06/04/2018\tright height to rest her chin upon Alice��s shoulder, and it was an\tNashville\n06/04/2018\tbore it as well as she could.\tSeattle\n06/04/2018\t���The game��s going on rather better now,�� she said, by way of keeping up\tKansas\n06/04/2018\t�����Tis so,�� said the Duchess: ���and the moral of that is--���Oh, ���tis love,\tSeattle\n06/04/2018\t���Somebody said,�� Alice whispered, ���that it��s done by everybody minding\tKansas\n06/04/2018\ttheir own business!��\tDallas\n06/04/2018\tsharp little chin into Alice��s shoulder as she added, ���and the moral\tLos Angeles\n06/04/2018\tof THAT is--���Take care of the sense, and the sounds will take care of\tSan Francisco\n06/04/2018\t���I dare say you��re wondering why I don��t put my arm round your waist,��\tWashington\n06/04/2018\tthe Duchess said after a pause: ���the reason is, that I��m doubtful about\tNew York\n06/04/2018\tthe moral of that is--���Birds of a feather flock together.����\tDallas\n06/04/2018\t���Only mustard isn��t a bird,�� Alice remarked.\tSeattle\n06/04/2018\t���Right, as usual,�� said the Duchess: ���what a clear way you have of\tChicago\n06/04/2018\tyours.����\tSan Francisco\n06/04/2018\t���it��s a vegetable. It doesn��t look like one, but it is.��\tNashville\n06/04/2018\t���I quite agree with you,�� said the Duchess; ���and the moral of that\tLos Angeles\n06/04/2018\tthan what you had been would have appeared to them to be otherwise.����\tSan Francisco\n06/04/2018\tI had it written down: but I can��t quite follow it as you say it.��\tSeattle\n06/04/2018\t���That��s nothing to what I could say if I chose,�� the Duchess replied, in\tKansas\n05/04/2018\thot tea upon its nose.\tNashville\n05/04/2018\tThe Dormouse shook its head impatiently, and said, without opening its\tNashville\n06/04/2018\t���I��ve a right to think,�� said Alice sharply, for she was beginning to\tNashville\n06/04/2018\t���Just about as much right,�� said the Duchess, ���as pigs have to fly; and\tKansas\n06/04/2018\tthe m--��\tKansas\n06/04/2018\tin front of them, with her arms folded, frowning like a thunderstorm.\tChicago\n06/04/2018\t���A fine day, your Majesty!�� the Duchess began in a low, weak voice.\tDallas\n06/04/2018\t���Now, I give you fair warning,�� shouted the Queen, stamping on the\tSeattle\n06/04/2018\tground as she spoke; ���either you or your head must be off, and that in\tSan Francisco\n06/04/2018\ttoo much frightened to say a word, but slowly followed her back to the\tNew York\n06/04/2018\tcroquet-ground.\tMiami\n06/04/2018\tThe other guests had taken advantage of the Queen��s absence, and were\tMiami\n06/04/2018\tresting in the shade: however, the moment they saw her, they hurried\tWashington\n06/04/2018\tAll the time they were playing the Queen never left off quarrelling with\tSan Francisco\n06/04/2018\tthe other players, and shouting ���Off with his head!�� or ���Off with her\tNashville\n06/04/2018\thead!�� Those whom she sentenced were taken into custody by the soldiers,\tLos Angeles\n06/04/2018\twho of course had to leave off being arches to do this, so that by\tKansas\n06/04/2018\tunder sentence of execution.\tNew York\n06/04/2018\t���It��s the thing Mock Turtle Soup is made from,�� said the Queen.\tNashville\n06/04/2018\t���I never saw one, or heard of one,�� said Alice.\tDallas\n06/04/2018\t���Come on, then,�� said the Queen, ���and he shall tell you his history,��\tMiami\n06/04/2018\tAs they walked off together, Alice heard the King say in a low voice,\tDallas\n06/04/2018\tto the company generally, ���You are all pardoned.�� ���Come, THAT��S a good\tSan Francisco\n06/04/2018\tnumber of executions the Queen had ordered.\tNashville\n06/04/2018\tthing!�� said the Queen, ���and take this young lady to see the Mock\tLos Angeles\n06/04/2018\tTurtle, and to hear his history. I must go back and see after some\tSan Francisco\n06/04/2018\texecutions I have ordered��; and she walked off, leaving Alice alone with\tKansas\n06/04/2018\tshe was out of sight: then it chuckled. ���What fun!�� said the Gryphon,\tWashington\n05/04/2018\tagain.\tKansas\n05/04/2018\t���No, I give it up,�� Alice replied: ���what��s the answer?��\tKansas\n05/04/2018\t���I haven��t the slightest idea,�� said the Hatter.\tNashville\n06/04/2018\thalf to itself, half to Alice.\tSeattle\n06/04/2018\t���What IS the fun?�� said Alice.\tLos Angeles\n06/04/2018\t���Why, SHE,�� said the Gryphon. ���It��s all her fancy, that: they never\tChicago\n06/04/2018\texecutes nobody, you know. Come on!��\tSan Francisco\n06/04/2018\tafter it: ���I never was so ordered about in all my life, never!��\tDallas\n06/04/2018\tpitied him deeply. ���What is his sorrow?�� she asked the Gryphon, and the\tChicago\n06/04/2018\tSo they went up to the Mock Turtle, who looked at them with large eyes\tChicago\n06/04/2018\tfull of tears, but said nothing.\tLos Angeles\n06/04/2018\t���This here young lady,�� said the Gryphon, ���she wants for to know your\tSeattle\n06/04/2018\tdown, both of you, and don��t speak a word till I��ve finished.��\tWashington\n06/04/2018\tshe waited patiently.\tNashville\n06/04/2018\t���Once,�� said the Mock Turtle at last, with a deep sigh, ���I was a real\tLos Angeles\n06/04/2018\theavy sobbing of the Mock Turtle. Alice was very nearly getting up and\tNew York\n06/04/2018\tsaying, ���Thank you, sir, for your interesting story,�� but she could\tNashville\n07/04/2018\tthough still sobbing a little now and then, ���we went to school in the\tDallas\n07/04/2018\tsea. The master was an old Turtle--we used to call him Tortoise--��\tKansas\n07/04/2018\tangrily: ���really you are very dull!��\tLos Angeles\n07/04/2018\tadded the Gryphon; and then they both sat silent and looked at poor\tKansas\n07/04/2018\tto the Mock Turtle, ���Drive on, old fellow! Don��t be all day about it!��\tWashington\n07/04/2018\t���I never said I didn��t!�� interrupted Alice.\tNashville\n07/04/2018\t���We had the best of educations--in fact, we went to school every day--��\tDallas\n07/04/2018\t���I��VE been to a day-school, too,�� said Alice; ���you needn��t be so proud\tLos Angeles\n07/04/2018\tas all that.��\tDallas\n07/04/2018\t���With extras?�� asked the Mock Turtle a little anxiously.\tChicago\n07/04/2018\t���And washing?�� said the Mock Turtle.\tLos Angeles\n07/04/2018\t���Ah! then yours wasn��t a really good school,�� said the Mock Turtle in\tNew York\n07/04/2018\ta tone of great relief. ���Now at OURS they had at the end of the bill,\tSan Francisco\n07/04/2018\t���What was that?�� inquired Alice.\tWashington\n07/04/2018\t���Reeling and Writhing, of course, to begin with,�� the Mock Turtle\tNashville\n07/04/2018\t���Yes,�� said Alice doubtfully: ���it means--to--make--anything--prettier.��\tDallas\n07/04/2018\t���Well, there was Mystery,�� the Mock Turtle replied, counting off\tChicago\n07/04/2018\tSeaography: then Drawling--the Drawling-master was an old conger-eel,\tKansas\n07/04/2018\tthat used to come once a week: HE taught us Drawling, Stretching, and\tWashington\n07/04/2018\t���What was THAT like?�� said Alice.\tWashington\n07/04/2018\tHe was an old crab, HE was.��\tLos Angeles\n07/04/2018\t���I never went to him,�� the Mock Turtle said with a sigh: ���he taught\tNashville\n07/04/2018\tcreatures hid their faces in their paws.\tKansas\n07/04/2018\t���And how many hours a day did you do lessons?�� said Alice, in a hurry to\tSan Francisco\n07/04/2018\t���Ten hours the first day,�� said the Mock Turtle: ���nine the next, and so\tChicago\n07/04/2018\t���What a curious plan!�� exclaimed Alice.\tSan Francisco\n07/04/2018\tbefore she made her next remark. ���Then the eleventh day must have been a\tLos Angeles\n07/04/2018\t���And how did you manage on the twelfth?�� Alice went on eagerly.\tLos Angeles\n07/04/2018\t���That��s enough about lessons,�� the Gryphon interrupted in a very decided\tLos Angeles\n07/04/2018\ttone: ���tell her something about the games now.��\tDallas\n07/04/2018\tCHAPTER X. The Lobster Quadrille\tKansas\n05/04/2018\t���I dare say you never even spoke to Time!��\tSeattle\n05/04/2018\t���Perhaps not,�� Alice cautiously replied: ���but I know I have to beat time\tWashington\n05/04/2018\twhen I learn music.��\tChicago\n07/04/2018\this eyes. He looked at Alice, and tried to speak, but for a minute or\tSan Francisco\n07/04/2018\ttwo sobs choked his voice. ���Same as if he had a bone in his throat,��\tNashville\n07/04/2018\trunning down his cheeks, he went on again:--\tLos Angeles\n07/04/2018\t���You may not have lived much under the sea--�� [���I haven��t,�� said\tSan Francisco\n07/04/2018\tLobster Quadrille is!��\tLos Angeles\n07/04/2018\t���Why,�� said the Gryphon, ���you first form into a line along the\tNew York\n07/04/2018\tsea-shore--��\tLos Angeles\n07/04/2018\t���Two lines!�� cried the Mock Turtle. ���Seals, turtles, salmon, and so on;\tMiami\n07/04/2018\tthen, when you��ve cleared all the jelly-fish out of the way--��\tNew York\n07/04/2018\t���Each with a lobster as a partner!�� cried the Gryphon.\tWashington\n07/04/2018\t���--change lobsters, and retire in same order,�� continued the Gryphon.\tKansas\n07/04/2018\t���Swim after them!�� screamed the Gryphon.\tSan Francisco\n07/04/2018\t���Change lobsters again!�� yelled the Gryphon at the top of its voice.\tChicago\n07/04/2018\t���Very much indeed,�� said Alice.\tNashville\n07/04/2018\t���We can do without lobsters, you know. Which shall sing?��\tNashville\n07/04/2018\tSo they began solemnly dancing round and round Alice, every now and\tLos Angeles\n07/04/2018\tforepaws to mark the time, while the Mock Turtle sang this, very slowly\tKansas\n07/04/2018\tand sadly:--\tChicago\n07/04/2018\t������Will you walk a little faster?�� said a whiting to a snail.\tNashville\n07/04/2018\tSee how eagerly the lobsters and the turtles all advance!\tChicago\n07/04/2018\tThey are waiting on the shingle--will you come and join the dance?\tKansas\n07/04/2018\tWill you, won��t you, will you, won��t you, won��t you join the dance?\tLos Angeles\n07/04/2018\t���You can really have no notion how delightful it will be\tMiami\n17/04/2018\tthat Alice had begun to think that very few things indeed were really\tNashville\n17/04/2018\tThere seemed to be no use in waiting by the little door, so she went\tChicago\n07/04/2018\tBut the snail replied ���Too far, too far!�� and gave a look askance--\tSan Francisco\n07/04/2018\tSaid he thanked the whiting kindly, but he would not join the dance.\tSeattle\n<!--TABLE_COMMENT-->\n<font color=red>Results are limited by 1000.</font>"}]},"apps":[],"jobName":"paragraph_1535476177629_865391092","id":"20180314-192123_2079886611","dateCreated":"2018-08-28T17:09:37+0000","dateStarted":"2018-08-30T23:58:50+0000","dateFinished":"2018-08-30T23:59:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:306"},{"title":"You can even write this table directly to object store!","text":"%spark2\nimport org.apache.spark.sql.AnalysisException\nimport org.apache.hadoop.fs.swift.exceptions.SwiftConfigurationException\n\nval filename = \"tickets.csv\"\nval objstorename = \"adam\"\n\ntry {\n spark.sql(\"select * from tickets\")\n .write\n .format(\"csv\")\n .save(s\"swift://$objstorename.default/$filename\")\n} catch {\n case e: AnalysisException => println(\"our file already exists! try naming it something else\")\n case e: SwiftConfigurationException => println(\"the object store name seems to be incorrect, try defining it above\")\n}\n","dateUpdated":"2018-08-28T17:09:37+0000","config":{"tableHide":false,"editorSetting":{"language":"scala","editOnDblClick":"true"},"colWidth":12,"editorMode":"ace/mode/scala","editorHide":true,"title":true,"results":{},"enabled":true},"settings":{"params":{},"forms":{}},"results":{"code":"SUCCESS","msg":[{"type":"TEXT","data":"\nimport org.apache.spark.sql.AnalysisException\n\nimport org.apache.hadoop.fs.swift.exceptions.SwiftConfigurationException\n\nfilename: String = tickets.csv\n\nobjstorename: String = adam\nour file already exists! try naming it something else\n"}]},"apps":[],"jobName":"paragraph_1535476177629_865391092","id":"20180314-195702_1962086356","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:307"},{"text":"%sql\n","dateUpdated":"2018-08-28T17:09:37+0000","config":{"colWidth":12,"editorMode":"ace/mode/sql","results":{},"enabled":true,"editorSetting":{"language":"sql"}},"settings":{"params":{},"forms":{}},"apps":[],"jobName":"paragraph_1535476177630_866545339","id":"20180802-205811_355544315","dateCreated":"2018-08-28T17:09:37+0000","status":"READY","errorMessage":"","progressUpdateIntervalMs":500,"$$hashKey":"object:308"}],"name":"Stream_Viewer","id":"2DQ6WJ2UK","angularObjects":{"2DJZYY4TH:shared_process":[],"2DM1XAWRD:shared_process":[],"2DMHEN2CM:shared_process":[],"2DMRW8G1U:shared_process":[],"2DHYW66NX:shared_process":[],"2DMP8TPE4:shared_process":[],"2DKT96QMW:shared_process":[],"2C4U48MY3_spark2:shared_process":[]},"config":{"looknfeel":"default","personalizedMode":"false"},"info":{}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment