Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
934ecc82
Commit
934ecc82
authored
12 years ago
by
Tathagata Das
Browse files
Options
Downloads
Patches
Plain Diff
Removed streaming-env.sh.template
parent
3dc87dd9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
conf/streaming-env.sh.template
+0
-22
0 additions, 22 deletions
conf/streaming-env.sh.template
run
+0
-4
0 additions, 4 deletions
run
sentences.txt
+0
-3
0 additions, 3 deletions
sentences.txt
with
0 additions
and
29 deletions
conf/streaming-env.sh.template
deleted
100755 → 0
+
0
−
22
View file @
3dc87dd9
#!/usr/bin/env bash
# This file contains a few additional setting that are useful for
# running streaming jobs in Spark. Copy this file as streaming-env.sh .
# Note that this shell script will be read after spark-env.sh, so settings
# in this file may override similar settings (if present) in spark-env.sh .
# Using concurrent GC is strongly recommended as it can significantly
# reduce GC related pauses.
SPARK_JAVA_OPTS+
=
" -XX:+UseConcMarkSweepGC"
# Using Kryo serialization can improve serialization performance
# and therefore the throughput of the Spark Streaming programs. However,
# using Kryo serialization with custom classes may required you to
# register the classes with Kryo. Refer to the Spark documentation
# for more details.
# SPARK_JAVA_OPTS+=" -Dspark.serializer=spark.KryoSerializer"
export
SPARK_JAVA_OPTS
This diff is collapsed.
Click to expand it.
run
+
0
−
4
View file @
934ecc82
...
...
@@ -13,10 +13,6 @@ if [ -e $FWDIR/conf/spark-env.sh ] ; then
.
$FWDIR
/conf/spark-env.sh
fi
if
[
-e
$FWDIR
/conf/streaming-env.sh
]
;
then
.
$FWDIR
/conf/streaming-env.sh
fi
if
[
"
$SPARK_LAUNCH_WITH_SCALA
"
==
"1"
]
;
then
if
[
`
command
-v
scala
`
]
;
then
RUNNER
=
"scala"
...
...
This diff is collapsed.
Click to expand it.
sentences.txt
deleted
100644 → 0
+
0
−
3
View file @
3dc87dd9
Hello world!
What's up?
There is no cow level
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment