Browse Source

fmt

pull/7185/head
chrislu 1 month ago
parent
commit
8498240460
  1. 9
      weed/mq/logstore/log_to_parquet.go

9
weed/mq/logstore/log_to_parquet.go

@ -4,6 +4,11 @@ import (
"context" "context"
"encoding/binary" "encoding/binary"
"fmt" "fmt"
"io"
"os"
"strings"
"time"
"github.com/parquet-go/parquet-go" "github.com/parquet-go/parquet-go"
"github.com/parquet-go/parquet-go/compress/zstd" "github.com/parquet-go/parquet-go/compress/zstd"
"github.com/seaweedfs/seaweedfs/weed/filer" "github.com/seaweedfs/seaweedfs/weed/filer"
@ -16,10 +21,6 @@ import (
util_http "github.com/seaweedfs/seaweedfs/weed/util/http" util_http "github.com/seaweedfs/seaweedfs/weed/util/http"
"github.com/seaweedfs/seaweedfs/weed/util/log_buffer" "github.com/seaweedfs/seaweedfs/weed/util/log_buffer"
"google.golang.org/protobuf/proto" "google.golang.org/protobuf/proto"
"io"
"os"
"strings"
"time"
) )
const ( const (

Loading…
Cancel
Save