Skip to content

Commit

Permalink
chore: fix log configuration format (#4255)
Browse files Browse the repository at this point in the history
Committed-by: siyuanzhang.zsy from Dev container
  • Loading branch information
siyuan0322 authored Sep 24, 2024
1 parent 82fbbe0 commit 504558c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gaia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Ir Integration Test on Experimental Store
run: |
. ${HOME}/.graphscope_env
git clone -b master --single-branch --depth=1 https://github.com/7br/gstest.git /tmp/gstest
git clone -b master --single-branch --depth=1 https://github.com/7br/gstest.git /tmp/gstest || true
cd ${GITHUB_WORKSPACE}/interactive_engine/compiler && ./ir_experimental_ci.sh
- name: Ir Integration Pattern Test on Experimental Store
Expand Down
5 changes: 3 additions & 2 deletions interactive_engine/assembly/src/conf/groot/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
</appender>
<appender name="Metric" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log_dir}/metric.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${log_dir}/metric.log.%d{yyyy-MM-dd}.%i.gz</fileNamePattern>
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
<fileNamePattern>${log_dir}/metric.%d{yyyy-MM-dd}.%i.gz</fileNamePattern>
<maxHistory>7</maxHistory>
<maxFileSize>100MB</maxFileSize>
<totalSizeCap>500MB</totalSizeCap>
</rollingPolicy>
<encoder>
Expand Down
4 changes: 0 additions & 4 deletions interactive_engine/compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions interactive_engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.version}</version>
</plugin>
<plugin>
<!-- <plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.version}</version>
<executions>
Expand Down Expand Up @@ -763,7 +763,7 @@
</configuration>
</execution>
</executions>
</plugin>
</plugin> -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven.assembly.version}</version>
Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfiles/graphscope-store.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \

RUN apt-get update -y && \
apt-get install -y sudo default-jdk dnsutils tzdata lsof \
libjemalloc-dev libunwind-dev binutils less && \
libjemalloc-dev libunwind-dev binutils less vim && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 504558c

Please sign in to comment.