#cloudevents
Explore tagged Tumblr posts
Photo

Fight the Cloud
Ever just had a cloud deployment fail suddenly and repeatedly just to suddenly work once the calvary is called in? Yeah...
0 notes
Text
Cloud Native Computing Foundation announces CloudEvents graduation
The Cloud Native Computing Foundation (CNCF) recently announced the graduation of CloudEvents, a project designed to standardize event metadata for improved interoperability across various services, platforms, and systems.
@tonyshan #techinnovation https://bit.ly/tonyshan https://bit.ly/tonyshan_X
0 notes
Text
API Gateways to manage dynamic scaling
One of the benefits of using cloud providers is the potential to scale solutions to meet demand by scaling out with additional compute nodes without concern for physical capacity limits (cost considerations are smaller, but still apply). Dynamic scaling is typically driven by monitoring defined groups of nodes for CPU use and when demand hits a threshold an additional node is spun up. Kubernetes…
View On WordPress
0 notes
Photo

First physical meetup of the Philippines .NET Users Group since the outbreak of the pandemic happened last night at the new Microsoft Philippines office in One Ayala. Discussed were new topics on event driven architecture such as SignalR and CloudEvents #NewsMediaNest #dotnet #signalr #cloudevents #phnug #microsoft #philippines #eventdrivenarchitecture (at Microsoft Philippines Tech Community) https://www.instagram.com/p/CmLOC8wv0uA/?igshid=NGJjMDIxMWI=
0 notes
Link
Cloud computing is sweeping across industries and a majority of organizations are moving to the cloud in order to scale and innovate. While cloud operations and strategies keep evolving, and so will cyber-attacks, hence, there is a critical need to get your cloud security basics right.
But what are the major trends on cloud security and compliance to watch for in 2022?
Join our live webinar on February 24th, 2022, at 8:30 AM EST and discover the latest global cloud security and compliance trends along with strategies that can help you implement them. Also, get insights on how to navigate evolving cyber threat issues and improve your enterprise’s security posture.
0 notes
Text
town updates !

wests is having a two for one for date nights !

it’s ladies night in moonies tomorrow ( tuesday ) night !
it’s techno night at the pirate’s life tonight !
now playing ; sorry not sorry by demi lovato on this snoozy monday night !
enjoy knowing what’s happening every day or two? track cloudevents
0 notes
Note
So a list of our existing and new ship Ideas:
Alyn x Leroy: Snakemeleon, PurpleCupcakes
Mira x Henry: Watercrab, PearlTie
Tyler x Irene: SunflowerFabric, SunshineRacoon
Flynn x Akila: EmeraldThief, GoldBird
Rubina x Luxianna: Carddove,
Taiyo x Rae: Sunnight,
Eva x Kumo: Cloudeve
I LOVE the names!! Give me some ideas too. Maybe Taiyo x Rae could be called this too XD
Taiyo x Rae : Moonsun
3 notes
·
View notes
Text
Boosting interoperability in the cloud with CloudEvents v1.0 support on Azure Event Grid
http://bit.ly/2XBiQB9
0 notes
Link
Evergreen: Serverless Functions & Compute for Customer 360 Platform Delightful and cohesive digital experiences make for happy customers, partners and employees, and building those modern experiences requires direct and seamless access to Customer 360 data and business logic. That’s why we’re excited to announce Salesforce Evergreen — a new addition to the Customer 360 Platform that brings in serverless functions based on fully-managed Kubernetes, support for open programming languages and commonly used high-performance data stores. Evergreen is the best way to build the deep and engaging digital experiences that your customers have come to expect. Evergreen supports technologies and architectural patterns that make development teams productive and happy: Functions-as-a-Service for writing business logic and event processing in languages like Node.js, Java and Apex, using the full power of those languages’ package ecosystems. Functions can be triggered directly from Apex or using Platform Events, with many more invocation types and event sources to come. Microservices for building serverless HTTP apps and APIs that can be quickly evolved by small agile teams and composed into complex, engaging digital experiences. Services and functions are serverless, consume no resources when idle and automatically and elastically scale with traffic. Managed data stores like Postgres, Apache Kafka and Redis that complement the Salesforce Data APIs for high-performance persistence and real-time eventing. As an industry first, these features come with built-in customer context, driven by the Salesforce data model and low-code components. Evergreen is a seamless part of the Salesforce platform and no extra authentication or networking setup is required. For example, developers can invoke functions directly from Apex, run logic with org-context and query and write-back updates. Evergreen is based on Kubernetes and balances control and access to scalable container technology by providing a fully managed serverless service operated by Salesforce. This service lets you focus more on innovation rather than infrastructure operations. Evergreen opens Salesforce development to any development team because apps, functions and services can be built using common open languages, tools and technologies. At the Dreamforce 2019 Developer Keynote, we showcased how Salesforce customers like Caesars Entertainment can build a modern guest check-in experience using Evergreen. In the keynote demo, the Lightning Platform is used to quickly create an employee-facing iOS app for managing housekeeping and room-readiness and that is seamlessly extended with event-driven functions running on Evergreen. When housekeeping marks a room as ready using the employee app, a platform event triggers a Node.js function that uses guest-context to send a tailored real-time notification letting the guest know that the room is ready for early check-in. At the end of the stay, the Salesforce Flow powering the guest checkout can call out to a different function with invoicing details. The Node.js function can use the invoice details and an npm PDF module to quickly generate a bill. Here’s the sample function that receives the request as a CloudEvent fetches additional data, generates a PDF and adds a link to the PDF from the guest booking record: import { UnitOfWork, SObject } from '@salesforce/functions'; import { PDFDocument } from 'pdfkit'; import * as fs from 'fs'; module.exports = async function(event, context, logger) { const folioPayload = event.payload; // Creating a new Unit Of Work instance const uow = UnitOfWork; // Run SOQL query to fetch folio data const query = `SELECT Id, Description__c, Amount__c, Date__c FROM Booking_LineItems__c WHERE Reservation__c =:${folioPayload.recordId}`; const folioLineItems = await context.sfApi.query(query); // Call function to generate PDF and store in external data store // for Files Connect const pdfFilesConnect = await generatePdf( folioPayload.recordId, folioLineItems ); // Update the booking object const ReservationObject = new SObject('Reservation__c'); ReservationObject.Id = folioPayload.recordId; ReservationObject.Status__c = 'Paid and Folio created'; uow.registerModified(ReservationObject); // Update data uow.commit(); }; async function generatePdf(id, lineItems) { # generate and store folio PDF } Functions running on Evergreen idle when not in use and automatically scale to handle any invocation load or event throughput. Functions are easy to build from source with Cloud Native Buildpacks and developers are free to use any supported programming language and to pull in any package or library that’s going to help them get their job done. Evergreen is the latest addition to the Salesforce Platform, combining Heroku’s decade-long experience building scalable container runtimes and high-performance data stores with Lightning tools and features. The unique combination of serverless, elastic container technology and seamless access to customer data and low-code business logic makes Salesforce the obvious place to build and run the differentiated digital experiences that impress your customers, partners and employees. A developer preview of Evergreen will be available with the Spring ’20 release in February. Sign up to get Evergreen updates. You can also watch the Dreamforce Developer Keynote recording to see an Evergreen demo. If you’re joining us on-site at #DF19, drop by the Dreamforce Evergreen booth at Platform Park in the Trailhead area (At Moscone West) to learn more, or join us for these Evergreen-focused Dreamforce breakout sessions: Build More on the Salesforce Platform with Evergreen Functions: An Elastic Runtime for Node.js – Wed, Nov 20, (2:30-2:50pm), Moscone West (Surfside Theater) Salesforce Evergreen and Evergreen Functions: Build evented serverless consumer apps – Thurs, Nov 21 (3-3:40pm), Moscone West (Room 2007) Evented enterprise app architectures with Salesforce Evergreen and Evergreen Functions – Thurs, Nov 21 (5-5:40pm), Moscone West (Room 2024) Salesforce Evergreen and Evergreen Functions: Build evented serverless consumer apps – Fri, Nov 22, (12-12:40pm), Moscone West (Surfside Theater)
0 notes
Text
More Free Oracle Cloud than you might know
More Free Oracle Cloud than you might know
The news about Oracle offering some free cloud services ‘for life’ is making an impact. But, the free services don’t end there. The pricing of some other native cloud services includes some free bands. So it’s worth keeping an eye on the fine print. I wouldn’t be surprised if we see limited capacity access in other areas.
Oracle Functions– whilst the core of this service is built on the…
View On WordPress
0 notes
Link
https://t.co/FTtxYF1Pq0: “CNCF Advances CloudEvents Specification” https://t.co/tvnO2ptnju October 29, 2019 at 03:33PM
— cloudgear.io (@cloudgeario) October 29, 2019
via: https://ift.tt/1GAs5mb
0 notes
Photo

Serverless Specification CloudEvents Reaches Version 1.0 | State SAN FRANCISCO, Oct. 28, 2019 /PRNewswire/ -- The Cloud Native Computing Foundation® (CNCF®), which builds sustainable ecosystems for cloud native software, today announced that the open source specification CloudEvents has reached a version 1.0 milestone and has been promoted by the CNCF Technical Oversight Committee (TOC) from the Sandbox to Incubation.
0 notes
Text
CloudEvents 0.1 – A common set of metadata to help process events
https://medium.com/@austencollins/introducing-cloudevents-a758c62c76bf Comments
0 notes
Text
TechJPR January Newsletter
Well hello strangers! Happy New Year and all things lovely for 2020. I hope you're well. In this month’s newsletter, tidbits from our wonderful Facebook group including tips on pitching and an insurance offer for freelancers. Also job opportunities for those of you starting the year with itchy feet plus the usual diary of must do/swerve industry gigs on the horizon. Onward and upwards...
TechJPR social stuff
🖨 Paperless world aside, we still love a printer and members of the group offer their views on some of the best ones on the market. Read them here - thanks you lovely lot.
🆘It's every journalist's nightmare - no, not a strictly-enforced embargo but losing your laptop while on a press trip abroad. Group member Kris Sangani was full of praise for his insurer digitalrisks.co.uk, after they arranged a replacement for his MacBook Pro within 12 hours while in Las Vegas. Digital Risks is offering freelancers 50% off for 6 months for their subscription based cover with the code 'DROCTOPUS50'. 📚Calling all bookworms, Ginnia Cheng is resurrecting the Women in Tech Book Club MeetUp group, which currently boasts 350 female members working across the tech spectrum. She is looking for suggestions for speakers, sponsors, help with venue and book purchases. Sound like your (book) bag? Get in touch. 👌Some great tips for PRs and press officers in this thread on Twitter on how pitching to freelance journalist should be different to your strategy for inhouse hacks. Thanks for bringing it to our attention Becca.
⚽ If you don't want to know the score, look away now. TechJPR's December Fantasy Football Winner is Jonathan Burch who pipped Henry Burrell to the top spot by just a single point.. Jonathan wins a £40 Amazon gift voucher courtesy of ResponseSource.
To join the fun, head over to the Fantasy Premier League website and add the TechJPR private league with the code dptvw7 - there's a £40 monthly voucher and £200 for the overall winner. Good luck to all players and TechJPR members in 2020 👍
Jobs/things to do PR-land
🖋️ Eskenzi PR is recruiting account managers and executives to join its established cybersecurity team. The company is based in High Barnet although remote working a possibility. For more information email [email protected].
🖋️ Thinkjam is looking for a consumer tech freelancer at account manager level, ideally with experience of social media platforms, to help out throughout 2020. Drop a line to Paula Santo for details or to apply Journo-side 💻 AECOM is looking for a freelance journalist, ideally with experience of writing about data centres to help develop thought leadership and editorial content for an April 2020 campaign. If this is up your street contact Emma specifying your day rate, and including your CV/writing examples. If your publication, media outlet or PR agency has a job to post, send details to [email protected] and we'll do our best to include it in the next bulletin. No recruitment agency ads please.
Events to attend -- or not
🎟️ What: ICE 🏢 Where: Excel, London 📅 When: 4-6 February 💡 Why: The world’s gaming innovation showcase, ICE brings together 600+ solutions and 35,000+ professionals across all sectors of gaming, sessions exploring the future of gaming and networking opportunities. 🎟️ What: International Conference on Robotics and Artificial Intelligence 🏢 Where: Paris 📅 When: 17-18 February 2020 💡 Why: The conference will be organised around the theme "Probing Innovations-Opportunities in Robotics and Artificial Intelligence" bringing together academics, researchers, students and delegates to exchange new ideas. 🎟️ What: MWC 🏢 Where: Barcelona, Spain 📅 When: 24-27 February 💡 Why: The GSMA MWC series (formally known as Mobile World Congress) is the world’s largest exhibition for the mobile industry, and incorporates a conference featuring executives representing global mobile operators, device manufacturers, technology providers, vendors, and content owners. 🎟️ What: MWC 🏢 Where: Barcelona, Spain 📅 When: 24-27 February 💡 Why: The GSMA MWC series (formally known as Mobile World Congress) is the world’s largest exhibition for the mobile industry, and incorporates a conference featuring executives representing global mobile operators, device manufacturers, technology providers, vendors, and content owners. 🎟️ What: KubeCon/CloudNativeCon 🏢 Where: Amsterdam RAI 📅 When: 30 March – 2 April 💡 Why: The Cloud Native Computing Foundation’s flagship conference gathers adopters and technologists from leading open source and cloud native communities. Join Kubernetes, Prometheus, Envoy, CoreDNS, containerd, Fluentd, TUF, Jaeger, Vitess, OpenTracing, gRPC, CNI, Notary, NATS, Linkerd, Helm, Rook, Harbor, etcd, Open Policy Agent, CRI-O, TiKV, CloudEvents and Falco to further the education and advancement of cloud native computing. Got an industry event to publicise to our community of tech journalists and PRs? Send details to hello@techjpr and it may make it into our events calendar
News in brief
📰 Prior to announcing his departure, BBC director general Tony Hall revealed a plan for at least two-thirds of the BBC to be based outside of London by 2027 as it looks to produce “much more journalism” from its north of England hub in Salford, Greater Manchester. In his New Year speech to staff, Hall also outlined a push to improve BBC News online in the next year, particularly for mobile users, to make it “more distinctive, more useful and relevant to more users every day”. 📰 Almost two thirds of in-house communications leaders would now consider hiring a virtual PR agency, research finds. The first Virtual PR Agency UK Market Report – carried out by The Pulse Business for the PRCA’s Virtual PR Agency Group – surveyed in-house comms leaders based out of the UK and found over half had used a virtual agency, defined as an established business staffed predominantly by senior freelance experts.
And finally.. 📺Move over "Carpool Karaoke", group member Rich Leigh Smith has launched "PR in a Car", described by Smith as a stream-of-consciousness video/podcast talking about the business of PR. To hear his musings and to watch episodes, head over to YouTube and subscribe. Just don't tell his insurance company.
Until next time... Get in touch @TechJPR, [email protected]. And don’t forget our Facebook group. Remember to play nicely! RW
0 notes