Skip to content

Commit 73b804d

Browse files
authored
Change basic image to openjdk:11-slim (#216)
1 parent 7c7731c commit 73b804d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The hugegraph-computer is a distributed graph processing system for hugegraph. I
1313
- Based on BSP(Bulk Synchronous Parallel) model, an algorithm performs computing through multiple parallel iterations, every iteration is a superstep.
1414
- Auto memory management. The framework will never be OOM(Out of Memory) since it will split some data to disk if it doesn't have enough memory to hold all the data.
1515
- The part of edges or the messages of super node can be in memory, so you will never lose it.
16-
- You can output the results to HDFS or HugeGraph, or any other system.
16+
- You can load the data from HDFS or HugeGraph, output the results to HDFS or HugeGraph, or adapt any other systems manually as needed.
1717
- Easy to develop a new algorithm. You just need to focus on a vertex only processing just like as in a single server, without worrying about message transfer and memory/storage management.
1818

1919
## Learn More

computer-dist/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
FROM openjdk:11-jre
17+
FROM openjdk:11-slim
1818
LABEL maintainer="HugeGraph Docker Maintainers <dev@hugegraph.apache.org>"
1919
# use ParallelGC which is more friendly to olap system
2020
ENV JAVA_OPTS="-XX:+UnlockExperimentalVMOptions -XX:+UseParallelGC -XX:+UseContainerSupport -XX:MaxRAMPercentage=50 -XshowSettings:vm"

computer-k8s-operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
FROM openjdk:11-jre
17+
FROM openjdk:11-slim
1818
LABEL maintainer="HugeGraph Docker Maintainers <dev@hugegraph.apache.org>"
19-
WORKDIR /opt/app
19+
WORKDIR /hugegraph/operator
2020
COPY target/hugegraph-computer-operator-*.jar hugegraph-computer-operator.jar
2121
ENTRYPOINT ["java", "-jar", "hugegraph-computer-operator.jar"]

0 commit comments

Comments
 (0)