Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
status.html
.metadata
test-output
test-results
dependency-reduced-pom.xml
logs
/data
pulsar-broker/data/
pulsar-broker/tmp.*
pulsar-broker/src/test/resources/log4j2.yaml
pulsar-functions/worker/test-tenant/
pulsar-broker/src/test/resources/pulsar-functions-api-examples.jar
pulsar-functions/runtime/src/test/resources/
pulsar-functions/worker/src/test/resources/
*.log
*.nar

*.versionsBackup
*/bin

# Eclipse
.classpath
.project
.settings/
.recommenders/
.factorypath

# Intellij
.idea/
*.iml
*.iws

# Mac
**/.DS_Store

# VisualStudioCode artifacts
.vscode/

# Maven
log/
target/

# Python
*.pyc

# Perf tools
*.hgrm

# tmp files
*.pid

# Generated website
generated-site/

# Ansible and Terraform artifacts
deployment/terraform-ansible/deploy-pulsar.retry
deployment/terraform-ansible/aws/.terraform/
deployment/terraform-ansible/aws/.terraform.tfstate.lock.info
deployment/terraform-ansible/aws/terraform.tfstate
deployment/terraform-ansible/aws/terraform.tfstate.backup

# Vagrant
**/.vagrant


pulsar-client-cpp/python/pkg/osx/*/*.bak
pulsar-client-cpp/python/pkg/osx/*/*.whl
pulsar-client-cpp/python/wheelhouse

# CI generated files
.repository
docker.debug-info

# Yarn

**/yarn.lock

# docusaurus

**/website/i18n/*
**/website/translated_docs*
**/website/brodocs/index.html
**/website/brodocs/navData.js
**/website/brodocs/documents/*.md

# Avro
examples/flink/src/main/java/org/apache/flink/avro/generated
pulsar-flink/src/test/java/org/apache/flink/avro/generated
pulsar-client/src/test/java/org/apache/pulsar/client/avro/generated
/build/
37 changes: 37 additions & 0 deletions buildtools/src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.

-->
<Configuration status="INFO">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t:%C@%L] %-5level %logger{36} - %msg%n" />
</Console>
</Appenders>
<Loggers>
<Root level="warn">
<AppenderRef ref="Console" />
</Root>
<Logger name="org.eclipse.jetty" level="info"/>
<Logger name="org.apache.pulsar" level="info"/>
<Logger name="org.apache.bookkeeper" level="info"/>
<Logger name="org.apache.kafka" level="info"/>
</Loggers>
</Configuration>
Loading