Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pkg/parca: Add e2e test for Go PGO #2520

Merged
merged 1 commit into from
Feb 15, 2023
Merged
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
112 changes: 112 additions & 0 deletions pkg/parca/parca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@
package parca

import (
"bytes"
"compress/gzip"
"context"
"crypto/tls"
"errors"
"io"
"math"
"os"
"os/exec"
"testing"
"time"

Expand Down Expand Up @@ -269,3 +272,112 @@ func TestConsistency(t *testing.T) {

require.Equal(t, len(compactedOriginalProfile.Sample), len(resProf.Sample))
}

func runCmd(t *testing.T, name string, arg ...string) {
t.Helper()

cmd := exec.Command(name, arg...)
var outb bytes.Buffer
cmd.Stdout = &outb
cmd.Stderr = &outb
require.NoError(t, cmd.Run(), outb.String())
}

func TestPGOE2e(t *testing.T) {
runCmd(t, "go", "build", "-o", "testdata/pgotest", "./testdata/pgotest.go")
runCmd(t, "./testdata/pgotest")

ctx := context.Background()
logger := log.NewNopLogger()
reg := prometheus.NewRegistry()
tracer := trace.NewNoopTracerProvider().Tracer("")
col, err := frostdb.New()
require.NoError(t, err)
colDB, err := col.DB(context.Background(), "parca")
require.NoError(t, err)

schema, err := parcacol.Schema()
require.NoError(t, err)

table, err := colDB.Table(
"stacktraces",
frostdb.NewTableConfig(schema),
)
require.NoError(t, err)
m := metastoretest.NewTestMetastore(
t,
logger,
reg,
tracer,
)

metastore := metastore.NewInProcessClient(m)

fileContent, err := os.ReadFile("./testdata/pgotest.prof")
require.NoError(t, err)

store := profilestore.NewProfileColumnStore(
logger,
tracer,
metastore,
table,
schema,
)

_, err = store.WriteRaw(ctx, &profilestorepb.WriteRawRequest{
Series: []*profilestorepb.RawProfileSeries{{
Labels: &profilestorepb.LabelSet{
Labels: []*profilestorepb.Label{
{
Name: "__name__",
Value: "process_cpu",
},
{
Name: "job",
Value: "default",
},
},
},
Samples: []*profilestorepb.RawSample{{
RawProfile: fileContent,
}},
}},
})
require.NoError(t, err)

require.NoError(t, table.EnsureCompaction())
api := queryservice.NewColumnQueryAPI(
logger,
tracer,
getShareServerConn(t),
parcacol.NewQuerier(

logger,
tracer,
query.NewEngine(
memory.DefaultAllocator,
colDB.TableProvider(),
),
"stacktraces",
metastore,
),
)

res, err := api.Query(ctx, &querypb.QueryRequest{
Mode: querypb.QueryRequest_MODE_MERGE,
ReportType: querypb.QueryRequest_REPORT_TYPE_PPROF,
Options: &querypb.QueryRequest_Merge{
Merge: &querypb.MergeProfile{
Query: `process_cpu:samples:count:cpu:nanoseconds:delta`,
Start: timestamppb.New(timestamp.Time(math.MinInt64)),
End: timestamppb.New(timestamp.Time(math.MaxInt64)),
},
},
})
require.NoError(t, err)

rawPprof := res.Report.(*querypb.QueryResponse_Pprof).Pprof

require.NoError(t, os.WriteFile("./testdata/pgotest.res.prof", rawPprof, 0o644))
runCmd(t, "go", "build", "-pgo", "./testdata/pgotest.res.prof", "-o", "./testdata/pgotest", "./testdata/pgotest.go")
}
3 changes: 3 additions & 0 deletions pkg/parca/testdata/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pgotest
pgotest.prof
pgotest.res.prof
40 changes: 40 additions & 0 deletions pkg/parca/testdata/pgotest.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// Copyright 2022 The Parca Authors
// Licensed 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.

package main

import (
"log"
"os"
"runtime/pprof"
)

func main() {
f, err := os.Create("testdata/pgotest.prof")
if err != nil {
log.Fatal("could not create CPU profile: ", err)
}
defer f.Close() // error handling omitted for example
if err := pprof.StartCPUProfile(f); err != nil {
log.Fatal("could not start CPU profile: ", err)
}

hot()

defer pprof.StopCPUProfile()
}

func hot() {
for i := 0; i < 10_000_000_000; i++ {
}
}